nixpkgs/pkgs/development/idris-modules/build-builtin-package.nix

26 lines
505 B
Nix
Raw Permalink Normal View History

# Build one of the packages that comes with idris
2015-11-27 18:17:17 +00:00
# name: The name of the package
# deps: The dependencies of the package
{ idris, build-idris-package }: name: deps:
let
inherit (builtins.parseDrvName idris.name) version;
in
build-idris-package {
inherit name version;
inherit (idris) src;
noPrelude = true;
noBase = true;
2018-07-02 03:18:08 +00:00
idrisDeps = deps;
postUnpack = ''
2017-08-23 00:49:25 +00:00
sourceRoot=$sourceRoot/libs/${name}
'';
2015-11-27 18:17:17 +00:00
meta = idris.meta // {
description = "${name} builtin Idris library";
};
}