nixpkgs/pkgs/tools/security/shc/default.nix

22 lines
504 B
Nix
Raw Normal View History

2016-08-11 19:15:43 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shc-${version}";
version = "4.0.2";
2016-08-11 19:15:43 +00:00
rev = "${version}";
src = fetchFromGitHub {
inherit rev;
owner = "neurobin";
repo = "shc";
sha256 = "1vd9dldm6h234awn5fhpgq4lb85ylcawr2p2108332ffy70kvdix";
2016-08-11 19:15:43 +00:00
};
meta = with stdenv.lib; {
2018-11-18 11:04:03 +00:00
homepage = https://neurobin.org/projects/softwares/unix/shc/;
2016-08-11 19:15:43 +00:00
description = "Shell Script Compiler";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
};
}