ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, perl, installShellFiles }:
|
|
stdenv.mkDerivation rec {
|
|
version = "2.22.1";
|
|
pname = "checkbashisms";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz";
|
|
hash = "sha256-Nd1eYCnSe+NblujG44uKpvunkaITcdrC3g+M3uX+M9U=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
buildInputs = [ perl ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
substituteInPlace ./scripts/checkbashisms.pl \
|
|
--replace '###VERSION###' "$version"
|
|
|
|
runHook postBuild
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
installManPage scripts/$pname.1
|
|
installShellCompletion --bash --name $pname scripts/$pname.bash_completion
|
|
install -D -m755 scripts/$pname.pl $out/bin/$pname
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://sourceforge.net/projects/checkbaskisms/";
|
|
description = "Check shell scripts for non-portable syntax";
|
|
mainProgram = "checkbashisms";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ kaction ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|