2019-10-18 09:57:43 +02:00
|
|
|
{ mkDerivation, base, monad-loops, MonadRandom, pipes, protolude
|
|
|
|
, QuickCheck, quickcheck-instances, random, random-fu
|
2019-05-30 12:40:32 +02:00
|
|
|
, random-shuffle, stdenv, text
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
2019-10-18 09:10:11 +02:00
|
|
|
pname = "ga";
|
2019-05-30 12:40:32 +02:00
|
|
|
version = "0.1.0.0";
|
|
|
|
src = ./.;
|
2019-10-18 09:10:11 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2019-05-30 12:40:32 +02:00
|
|
|
libraryHaskellDepends = [
|
2019-10-18 09:57:43 +02:00
|
|
|
base monad-loops MonadRandom pipes protolude QuickCheck
|
2019-05-30 12:40:32 +02:00
|
|
|
quickcheck-instances random random-fu random-shuffle text
|
|
|
|
];
|
2019-10-18 09:10:11 +02:00
|
|
|
executableHaskellDepends = [
|
2019-10-18 09:57:43 +02:00
|
|
|
base monad-loops MonadRandom pipes protolude QuickCheck
|
|
|
|
quickcheck-instances random random-fu random-shuffle text
|
2019-10-18 09:10:11 +02:00
|
|
|
];
|
2019-05-30 12:40:32 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
}
|