nixpkgs/pkgs/tools/security/shc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
480 B
Nix
Raw Normal View History

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