46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
27 lines
699 B
Nix
27 lines
699 B
Nix
{ stdenv, fetchurl, perl }:
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0.0.2";
|
|
pname = "checkbashisms";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/checkbaskisms/${version}/checkbashisms";
|
|
sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
# The link returns directly the script. No need for unpacking
|
|
dontUnpack = 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;
|
|
};
|
|
}
|