nixpkgs/pkgs/tools/security/shc/default.nix
R. RyanTM 3bfc2d29cd shc: 3.9.6 -> 4.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/shc/versions
2018-11-18 00:59:14 -08:00

21 lines
484 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shc-${version}";
version = "4.0.0";
rev = "${version}";
src = fetchFromGitHub {
inherit rev;
owner = "neurobin";
repo = "shc";
sha256 = "1ghvggrygvs1nxjbmq4pqskfr3mzjhcprql9qfkyhz6ii6si75v8";
};
meta = with stdenv.lib; {
homepage = http://neurobin.github.io/shc;
description = "Shell Script Compiler";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
};
}