nixpkgs/pkgs/tools/security/shc/default.nix
Ryan Mulligan 9648aebf11 shc: 3.9.3 -> 3.9.6
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6/bin/shc -h` got 0 exit code
- ran `/nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6/bin/shc --help` got 0 exit code
- ran `/nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6/bin/shc -h` and found version 3.9.6
- ran `/nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6/bin/shc --help` and found version 3.9.6
- found 3.9.6 with grep in /nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6
- found 3.9.6 in filename of file in /nix/store/9gwfzrfmah4n4lf69anhqgxrj0p9f77l-shc-3.9.6
2018-02-27 15:56:42 -08:00

22 lines
484 B
Nix

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