2017-11-06 18:18:59 +00:00
|
|
|
# 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
|
2018-07-21 01:44:44 +01:00
|
|
|
{ idris, build-idris-package }: name: deps:
|
2017-08-23 01:48:56 +01:00
|
|
|
let
|
|
|
|
inherit (builtins.parseDrvName idris.name) version;
|
|
|
|
in
|
|
|
|
build-idris-package {
|
2015-11-27 14:35:59 +00:00
|
|
|
|
2017-11-06 18:18:59 +00:00
|
|
|
inherit name version;
|
2015-11-27 14:35:59 +00:00
|
|
|
inherit (idris) src;
|
|
|
|
|
2018-07-03 20:19:28 +01:00
|
|
|
noPrelude = true;
|
|
|
|
noBase = true;
|
2018-07-02 04:18:08 +01:00
|
|
|
|
2017-11-06 18:18:59 +00:00
|
|
|
idrisDeps = deps;
|
|
|
|
|
2015-11-27 14:35:59 +00:00
|
|
|
postUnpack = ''
|
2017-08-23 01:49:25 +01:00
|
|
|
sourceRoot=$sourceRoot/libs/${name}
|
|
|
|
'';
|
|
|
|
|
2015-11-27 18:17:17 +00:00
|
|
|
meta = idris.meta // {
|
|
|
|
description = "${name} builtin Idris library";
|
|
|
|
};
|
|
|
|
}
|