2016-08-11 19:15:43 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "shc";
|
2019-07-16 19:42:02 +00:00
|
|
|
version = "4.0.3";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2016-08-11 19:15:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "neurobin";
|
|
|
|
repo = "shc";
|
2019-07-16 19:42:02 +00:00
|
|
|
sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694";
|
2016-08-11 19:15:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +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;
|
|
|
|
};
|
|
|
|
}
|