mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
8d55538f97
This reverts commit 69d4adee1f
.
15 lines
395 B
Nix
15 lines
395 B
Nix
{ symlinkJoin, makeWrapper, stdenv }: idris: { path, lib }:
|
|
|
|
symlinkJoin {
|
|
name = idris.name;
|
|
src = idris.src;
|
|
paths = [ idris ];
|
|
buildInputs = [ makeWrapper ];
|
|
meta.platforms = idris.meta.platforms;
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idris \
|
|
--suffix PATH : ${ stdenv.lib.makeBinPath path } \
|
|
--suffix LIBRARY_PATH : ${stdenv.lib.makeLibraryPath lib}
|
|
'';
|
|
}
|