3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages.tastyTh: New expression

This commit is contained in:
Oliver Charles 2013-11-15 11:09:08 +00:00 committed by Peter Simons
parent 6e89adc6ba
commit 41a0cb7bd9
2 changed files with 17 additions and 0 deletions
pkgs
development/libraries/haskell/tasty-th
top-level

View file

@ -0,0 +1,15 @@
{ cabal, languageHaskellExtract, tasty }:
cabal.mkDerivation (self: {
pname = "tasty-th";
version = "0.1.1";
sha256 = "0ndwfz2gq0did6dfjilhdaxzya2qw9gckjkj090cp2rbkahywsga";
buildDepends = [ languageHaskellExtract tasty ];
meta = {
homepage = "http://github.com/bennofs/tasty-th";
description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})

View file

@ -2058,6 +2058,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
tastySmallcheck = callPackage ../development/libraries/haskell/tasty-smallcheck {};
tastyTh = callPackage ../development/libraries/haskell/tasty-th {};
templateDefault = callPackage ../development/libraries/haskell/template-default {};
temporary = callPackage ../development/libraries/haskell/temporary {};