haga/default.nix

21 lines
648 B
Nix
Raw Normal View History

2019-10-18 23:20:19 +02:00
{ mkDerivation, base, Cabal, extra, monad-loops, MonadRandom, pipes
, protolude, QuickCheck, quickcheck-instances, random, random-fu
, random-shuffle, stdenv, text
2019-05-30 12:40:32 +02:00
}:
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 extra monad-loops MonadRandom pipes protolude QuickCheck
2019-05-30 12:40:32 +02:00
quickcheck-instances random random-fu random-shuffle text
];
executableHaskellDepends = [
2019-10-18 23:20:19 +02:00
base Cabal extra monad-loops MonadRandom pipes protolude QuickCheck
quickcheck-instances random random-fu random-shuffle text
];
2019-05-30 12:40:32 +02:00
license = stdenv.lib.licenses.gpl3;
}