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

stdenv.mkDerivation rec {
  name = "shc-${version}";
  version = "4.0.2";
  rev = "${version}";

  src = fetchFromGitHub {
    inherit rev;
    owner = "neurobin";
    repo = "shc";
    sha256 = "1vd9dldm6h234awn5fhpgq4lb85ylcawr2p2108332ffy70kvdix";
  };

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