-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
30 lines (30 loc) · 1 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
30
{ mkDerivation, acme-iot, base, csound-catalog, csound-expression
, csound-sampler, distributive, extra, hpack, lens, lib, listsafe
, MonadRandom, mtl, random, random-shuffle, sort, split
}:
mkDerivation {
pname = "funktor";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
acme-iot base csound-catalog csound-expression csound-sampler
distributive extra lens listsafe MonadRandom mtl random
random-shuffle sort split
];
libraryToolDepends = [ hpack ];
executableHaskellDepends = [
acme-iot base csound-catalog csound-expression csound-sampler
distributive extra lens listsafe MonadRandom mtl random
random-shuffle sort split
];
testHaskellDepends = [
acme-iot base csound-catalog csound-expression csound-sampler
distributive extra lens listsafe MonadRandom mtl random
random-shuffle sort split
];
prePatch = "hpack";
homepage = "https://github.com/harryaskham/funktor#readme";
license = lib.licenses.bsd3;
}