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

22 lines
504 B
Nix
Raw Normal View History

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