summary refs log tree commit diff
path: root/pkgs/development/idris-modules/build-builtin-package.nix
blob: 6de3f8b16669556c89f12116efcb2dc8ddeb9434 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 = ''
    sourceRoot=$sourceRoot/libs/${name}
  '';

  postPatch = ''
    sed -i ${name}.ipkg -e "/^opts/ s|-i \\.\\./|-i $IDRIS_LIBRARY_PATH/|g"
  '';

  meta = idris.meta // {
    description = "${name} builtin Idris library";
  };
}