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";
|
version = "2.06";
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
"out"
|
"bin"
|
||||||
"man"
|
"man"
|
||||||
|
"out"
|
||||||
];
|
];
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
|
@ -36,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
];
|
];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"PREFIX=${placeholder "out"}"
|
"PREFIX=${placeholder "bin"}"
|
||||||
"MANDIR=${placeholder "man"}/share/man"
|
"MANDIR=${placeholder "man"}/share/man"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -57,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
dontPatchShebangs = true;
|
dontPatchShebangs = true;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram "$out/bin/convmv" --prefix PERL5LIB : "$PERL5LIB"
|
wrapProgram "$bin/bin/convmv" --prefix PERL5LIB : "$PERL5LIB"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue