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