mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
convmv: add split bin
output
This commit is contained in:
parent
a94dd454e9
commit
07587e8c9d
1 changed files with 4 additions and 3 deletions
|
@ -12,8 +12,9 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
version = "2.06";
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"bin"
|
||||
"man"
|
||||
"out"
|
||||
];
|
||||
|
||||
src = fetchzip {
|
||||
|
@ -36,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
"PREFIX=${placeholder "bin"}"
|
||||
"MANDIR=${placeholder "man"}/share/man"
|
||||
];
|
||||
|
||||
|
@ -57,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
dontPatchShebangs = true;
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/convmv" --prefix PERL5LIB : "$PERL5LIB"
|
||||
wrapProgram "$bin/bin/convmv" --prefix PERL5LIB : "$PERL5LIB"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue