summary refs log blame commit diff
path: root/maintainers/scripts/nixpkgs-lint.nix
blob: 6d99c94bf33e38515119801c118d7c5dba0550c3 (plain) (tree)
1
2
3
4
5
6
7
8






                                                            
                    











                                                                                          
                                          

    
{ stdenv, makeWrapper, perl, perlPackages }:

stdenv.mkDerivation {
  name = "nixpkgs-lint-1";

  buildInputs = [ makeWrapper perl perlPackages.XMLSimple ];

  dontUnpack = true;
  buildPhase = "true";

  installPhase =
    ''
      mkdir -p $out/bin
      cp ${./nixpkgs-lint.pl} $out/bin/nixpkgs-lint
      wrapProgram $out/bin/nixpkgs-lint --set PERL5LIB $PERL5LIB
    '';

  meta = {
    maintainers = [ stdenv.lib.maintainers.eelco ];
    description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors";
    platforms = stdenv.lib.platforms.unix;
  };
}