mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
a0f4d19925
Using appendToName preserves the version at the end of the name.
21 lines
459 B
Nix
21 lines
459 B
Nix
# Build a version of idris with a set of packages visible
|
|
# packages: The packages visible to idris
|
|
{ stdenv, idris, symlinkJoin, makeWrapper }: packages:
|
|
|
|
let paths = stdenv.lib.closePropagation packages;
|
|
in
|
|
stdenv.lib.appendToName "with-packages" (symlinkJoin {
|
|
|
|
inherit (idris) name;
|
|
|
|
paths = paths ++ [idris] ;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idris \
|
|
--set IDRIS_LIBRARY_PATH $out/libs
|
|
'';
|
|
|
|
})
|