nixpkgs/pkgs/tools/security/shc/default.nix
R. RyanTM abc4ccdd2d shc: 4.0.2 -> 4.0.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/shc/versions
2019-07-17 09:37:34 +02:00

22 lines
504 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shc-${version}";
version = "4.0.3";
rev = "${version}";
src = fetchFromGitHub {
inherit rev;
owner = "neurobin";
repo = "shc";
sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694";
};
meta = with stdenv.lib; {
homepage = https://neurobin.org/projects/softwares/unix/shc/;
description = "Shell Script Compiler";
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
};
}