mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
shc: init at 3.9.3
This commit is contained in:
parent
a97df891fe
commit
17a9109b34
21
pkgs/tools/security/shc/default.nix
Normal file
21
pkgs/tools/security/shc/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -17322,6 +17322,8 @@ in
|
|||
|
||||
sailsd = callPackage ../misc/sailsd { };
|
||||
|
||||
shc = callPackage ../tools/security/shc { };
|
||||
|
||||
canon-cups-ufr2 = callPackage ../misc/cups/drivers/canon { };
|
||||
|
||||
mfcj470dw = callPackage_i686 ../misc/cups/drivers/mfcj470dw { };
|
||||
|
|
Loading…
Reference in a new issue