Merge pull request #4527 from bosu/test-simple

haskell: Add state-plus, test-simple packages
This commit is contained in:
Peter Simons
2014-10-14 22:38:29 +02:00
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, checkers, mtl, QuickCheck }:
cabal.mkDerivation (self: {
pname = "state-plus";
version = "0.1.1";
sha256 = "09zc4rymzvpq12mgl59h069m418qr43myhsj8dlf62g477wyx4g1";
buildDepends = [ mtl ];
testDepends = [ checkers mtl QuickCheck ];
meta = {
description = "MonadPlus for StateT";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, executablePath, mtl, QuickCheck, statePlus }:
cabal.mkDerivation (self: {
pname = "test-simple";
version = "0.1.7";
sha256 = "1p9y15vv23j1qn3shxl2wqb8skh0n53vrb39qv1nvff9bclxldka";
buildDepends = [ mtl QuickCheck statePlus ];
testDepends = [ executablePath mtl QuickCheck ];
meta = {
description = "Simple Perl inspired testing";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})