haga/default.nix

22 lines
649 B
Nix
Raw Normal View History

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