haskell: add test-simple package

This commit is contained in:
Boris Sukholitko 2014-10-14 23:28:25 +03:00
parent 49469001be
commit 8d5be73061
2 changed files with 18 additions and 0 deletions

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;
};
})

View File

@ -2538,6 +2538,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
testingFeat = callPackage ../development/libraries/haskell/testing-feat {};
testSimple = callPackage ../development/libraries/haskell/test-simple {};
texmath = callPackage ../development/libraries/haskell/texmath {};
text_0_11_0_5 = callPackage ../development/libraries/haskell/text/0.11.0.5.nix {};