about summary refs log tree commit diff
path: root/pkgs/tools/security/shc/default.nix
blob: 0c1bf93ed1c6b26b5be643492f9d08855032ed84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "shc";
  version = "4.0.3";
  rev = version;

  src = fetchFromGitHub {
    inherit rev;
    owner = "neurobin";
    repo = "shc";
    sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694";
  };

  meta = with lib; {
    homepage = "https://neurobin.org/projects/softwares/unix/shc/";
    description = "Shell Script Compiler";
    platforms = lib.platforms.all;
    license = licenses.gpl3;
  };
}