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

27 lines
590 B
Nix
Raw Normal View History

2015-11-27 18:17:17 +00:00
# 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 = ''
2017-08-23 00:49:25 +00:00
sourceRoot=$sourceRoot/libs/${name}
'';
postPatch = ''
sed -i ${name}.ipkg -e "/^opts/ s|-i \\.\\./|-i $IDRIS_LIBRARY_PATH/|g"
'';
2015-11-27 18:17:17 +00:00
meta = idris.meta // {
description = "${name} builtin Idris library";
};
}