4b06293597
- adds version to name - also adds "unix" as platform (anything with perl should work)
27 lines
711 B
Nix
27 lines
711 B
Nix
{ stdenv, fetchurl, perl }:
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0.0.2";
|
|
name = "checkbashisms-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/checkbaskisms/${version}/checkbashisms";
|
|
sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
# The link returns directly the script. No need for unpacking
|
|
unpackPhase = "true";
|
|
|
|
installPhase = ''
|
|
install -D -m755 $src $out/bin/checkbashisms
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://sourceforge.net/projects/checkbaskisms/;
|
|
description = "Check shell scripts for non-portable syntax";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|