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

22 lines
484 B
Nix
Raw Normal View History

2016-08-11 21:15:43 +02:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shc-${version}";
version = "3.9.6";
2016-08-11 21:15:43 +02:00
rev = "${version}";
src = fetchFromGitHub {
inherit rev;
owner = "neurobin";
repo = "shc";
sha256 = "07l6m24ivjnvbglxkx9mvarpzc453qrlq5ybkyz7jdilh481aj33";
2016-08-11 21:15:43 +02:00
};
meta = with stdenv.lib; {
homepage = http://neurobin.github.io/shc;
description = "Shell Script Compiler";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
};
}