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