-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
23 lines (23 loc) · 776 Bytes
/
Copy pathdefault.nix
File metadata and controls
23 lines (23 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, aeson, base, bytestring, clap, containers, deepseq
, extra, hashable, hspec, http-types, lib, mtl, optparse-generic
, portaudio, PortMidi, stm, template-haskell, text, th-abstraction
, unix, wai, wai-websockets, warp, websockets
}:
mkDerivation {
pname = "ensemble";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bytestring clap containers deepseq extra hashable mtl
optparse-generic portaudio PortMidi stm template-haskell text
th-abstraction unix
];
executableHaskellDepends = [
aeson base bytestring extra http-types optparse-generic text wai
wai-websockets warp websockets
];
testHaskellDepends = [ base clap hspec mtl ];
license = lib.licenses.mit;
}