nixpkgs/pkgs/development/libraries/haskell/hspec-expectations/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

17 lines
523 B
Nix

{ cabal, hspec, HUnit, markdownUnlit, silently }:
cabal.mkDerivation (self: {
pname = "hspec-expectations";
version = "0.3.2";
sha256 = "0962wlngqck0wc7mcby9bzci1s8d9a91vsm39rnab5wifhc2c6xi";
buildDepends = [ HUnit ];
testDepends = [ hspec HUnit markdownUnlit silently ];
doCheck = false;
meta = {
homepage = "https://github.com/sol/hspec-expectations#readme";
description = "Catchy combinators for HUnit";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})