aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/security/shc
diff options
context:
space:
mode:
authorJohn Chee <cheecheeo@gmail.com>2016-08-11 19:15:43 +0000
committerJohn Chee <cheecheeo@gmail.com>2016-08-11 20:56:11 +0000
commit17a9109b34dcb0d7d6e1dad7e57e7c001aeaa257 (patch)
tree2851b883d7a2602542e3a5f96b01586b07e9f448 /pkgs/tools/security/shc
parenta97df891fee47f9eda8145f2485c0d7673916fde (diff)
shc: init at 3.9.3
Diffstat (limited to 'pkgs/tools/security/shc')
-rw-r--r--pkgs/tools/security/shc/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/security/shc/default.nix b/pkgs/tools/security/shc/default.nix
new file mode 100644
index 000000000000..5348ecce6479
--- /dev/null
+++ b/pkgs/tools/security/shc/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "shc-${version}";
+ version = "3.9.3";
+ rev = "${version}";
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "neurobin";
+ repo = "shc";
+ sha256 = "00fqzg4a0f4kp4wr8swhi5zqds3gh3gf7cgi1cipn16av0818xsa";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = http://neurobin.github.io/shc;
+ description = "Shell Script Compiler";
+ platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl3;
+ };
+}