blob: 6b6c7df4de9135d4611716654f635ac1ea07cfbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ mkDerivation, base, case-insensitive, data-default, directory
, explicit-exception, filelock, filepath, hinotify, jack
, optparse-applicative, process, stdenv, transformers, unix
}:
mkDerivation {
pname = "trivmix";
version = "2.6.4";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base case-insensitive data-default ];
executableHaskellDepends = [
base directory explicit-exception filelock filepath hinotify jack
optparse-applicative process transformers unix
];
license = stdenv.lib.licenses.publicDomain;
}
|