2016-08-11 12:15:43 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "shc";
|
2019-07-16 12:42:02 -07:00
|
|
|
version = "4.0.3";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2016-08-11 12:15:43 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "neurobin";
|
|
|
|
repo = "shc";
|
2019-07-16 12:42:02 -07:00
|
|
|
sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694";
|
2016-08-11 12:15:43 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://neurobin.org/projects/softwares/unix/shc/";
|
2016-08-11 12:15:43 -07:00
|
|
|
description = "Shell Script Compiler";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|