nixpkgs/pkgs/development/tools/misc/checkbashisms/default.nix
2017-08-03 11:56:15 +02:00

27 lines
712 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 = https://sourceforge.net/projects/checkbaskisms/;
description = "Check shell scripts for non-portable syntax";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
}