mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
etlegacy: fix binaries wrappers
This commit is contained in:
parent
b117f65a97
commit
fe24bde02f
@ -92,11 +92,6 @@ stdenv.mkDerivation {
|
||||
"-DINSTALL_DEFAULT_BINDIR=${placeholder "out"}/bin"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
makeWrapper $out/bin/etl.* $out/bin/etl
|
||||
makeWrapper $out/bin/etlded.* $out/bin/etlded
|
||||
'';
|
||||
|
||||
hardeningDisable = [ "fortify" ];
|
||||
|
||||
meta = {
|
||||
|
@ -18,10 +18,12 @@ symlinkJoin {
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
makeWrapper $out/bin/etl.* $out/bin/etl \
|
||||
wrapProgram $out/bin/etl.* \
|
||||
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
|
||||
makeWrapper $out/bin/etlded.* $out/bin/etlded \
|
||||
wrapProgram $out/bin/etlded.* \
|
||||
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
|
||||
makeWrapper $out/bin/etl.* $out/bin/etl
|
||||
makeWrapper $out/bin/etlded.* $out/bin/etlded
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user