mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
24 lines
545 B
Nix
24 lines
545 B
Nix
# Build one of the packages that come with idris
|
|
# name: The name of the package
|
|
# deps: The dependencies of the package
|
|
{ idris, build-idris-package, lib }: name: deps:
|
|
let
|
|
inherit (builtins.parseDrvName idris.name) version;
|
|
in
|
|
build-idris-package {
|
|
name = "${name}-${version}";
|
|
|
|
propagatedBuildInputs = deps;
|
|
|
|
inherit (idris) src;
|
|
|
|
postUnpack = ''
|
|
mv $sourceRoot/libs/${name} $IDRIS_LIBRARY_PATH
|
|
sourceRoot=$IDRIS_LIBRARY_PATH/${name}
|
|
'';
|
|
|
|
meta = idris.meta // {
|
|
description = "${name} builtin Idris library";
|
|
};
|
|
}
|