-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.nix
25 lines (25 loc) · 849 Bytes
/
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
{ mkDerivation, base, Cabal, cassava, extra, lib, monad-loops
, MonadRandom, optparse-applicative, pipes, protolude, QuickCheck
, quickcheck-instances, random, random-fu, random-shuffle, text
, wl-pprint-text
}:
mkDerivation {
pname = "haga";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base cassava extra monad-loops MonadRandom optparse-applicative
pipes protolude QuickCheck quickcheck-instances random random-fu
random-shuffle text wl-pprint-text
];
executableHaskellDepends = [
base Cabal cassava extra monad-loops MonadRandom
optparse-applicative pipes protolude QuickCheck
quickcheck-instances random random-fu random-shuffle text
wl-pprint-text
];
description = "Simplistic genetic algorithms library";
license = lib.licenses.gpl3Only;
}