mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #302929 from drupol/etlegacy-fix-desktop-files-part-II
etlegacy: fix binaries wrappers
This commit is contained in:
commit
78216458e8
@ -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