-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.nix
29 lines (29 loc) · 1.08 KB
/
default.nix
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
27
28
29
{ mkDerivation, base, bits, containers, deepseq, DPutils, ghc-prim
, lib, mmorph, mtl, OrderedBits, primitive, PrimitiveArray
, QuickCheck, singletons, singletons-base, strict, tasty
, tasty-quickcheck, tasty-th, template-haskell, th-abstraction
, th-orphans, transformers, tuple, vector
}:
mkDerivation {
pname = "ADPfusion";
version = "0.6.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bits containers deepseq DPutils ghc-prim mmorph mtl
OrderedBits primitive PrimitiveArray QuickCheck singletons
singletons-base strict template-haskell th-abstraction th-orphans
transformers tuple vector
];
testHaskellDepends = [
base bits containers deepseq DPutils ghc-prim mmorph mtl
OrderedBits primitive PrimitiveArray QuickCheck singletons
singletons-base strict tasty tasty-quickcheck tasty-th
template-haskell th-abstraction th-orphans transformers tuple
vector
];
homepage = "https://github.com/choener/ADPfusion";
description = "Efficient, high-level dynamic programming";
license = lib.licenses.bsd3;
}