1 { stdenv, lib, makeWrapper, perl, perlPackages }:
4 name = "nixpkgs-lint-1";
6 nativeBuildInputs = [ makeWrapper ];
7 buildInputs = [ perl perlPackages.XMLSimple ];
15 cp ${./nixpkgs-lint.pl} $out/bin/nixpkgs-lint
16 wrapProgram $out/bin/nixpkgs-lint --set PERL5LIB $PERL5LIB
20 maintainers = [ maintainers.eelco ];
21 description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors";
22 platforms = platforms.unix;