mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
40124cd0cf
Fixes #10450 When compiling packages with -o the executable invokes gcc. There is no compile time flag to control this invocation so for now we create a wrapper which provides the dependency at runtime.
15 lines
355 B
Nix
15 lines
355 B
Nix
{ symlinkJoin, makeWrapper, stdenv }: idris: { path, lib }:
|
|
|
|
symlinkJoin {
|
|
name = idris.name;
|
|
src = idris.src;
|
|
paths = [ idris ];
|
|
buildInputs = [ makeWrapper ];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idris \
|
|
--suffix PATH : ${ stdenv.lib.makeBinPath path } \
|
|
--suffix LIBRARY_PATH : ${stdenv.lib.makeLibraryPath lib}
|
|
'';
|
|
}
|
|
|