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.
28 lines
755 B
Nix
28 lines
755 B
Nix
{ stdenv, lib, makeWrapper, perl, perlPackages }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nix-generate-from-cpan-3";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = with perlPackages; [
|
|
perl GetoptLongDescriptive CPANPLUS Readonly LogLog4perl
|
|
];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${./nix-generate-from-cpan.pl} $out/bin/nix-generate-from-cpan
|
|
patchShebangs $out/bin/nix-generate-from-cpan
|
|
wrapProgram $out/bin/nix-generate-from-cpan --set PERL5LIB $PERL5LIB
|
|
'';
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ eelco ];
|
|
description = "Utility to generate a Nix expression for a Perl package from CPAN";
|
|
mainProgram = "nix-generate-from-cpan";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|