2021-01-17 20:14:59 +00:00
|
|
|
{ stdenv, lib, makeWrapper, perl, perlPackages }:
|
2013-07-25 22:50:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nixpkgs-lint-1";
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perl perlPackages.XMLSimple ];
|
2013-07-25 22:50:14 +01:00
|
|
|
|
2019-06-19 16:45:34 +01:00
|
|
|
dontUnpack = true;
|
2013-07-25 22:50:14 +01:00
|
|
|
buildPhase = "true";
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ${./nixpkgs-lint.pl} $out/bin/nixpkgs-lint
|
|
|
|
wrapProgram $out/bin/nixpkgs-lint --set PERL5LIB $PERL5LIB
|
|
|
|
'';
|
|
|
|
|
2021-01-17 20:14:59 +00:00
|
|
|
meta = with lib; {
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2013-07-25 22:50:14 +01:00
|
|
|
description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors";
|
2021-01-17 20:14:59 +00:00
|
|
|
platforms = platforms.unix;
|
2013-07-25 22:50:14 +01:00
|
|
|
};
|
|
|
|
}
|