1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/development/libraries/haskell/hspec-meta/default.nix
2014-04-07 17:06:35 +02:00

24 lines
719 B
Nix

{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit
, QuickCheck, quickcheckIo, random, setenv, tfRandom, time
, transformers
}:
cabal.mkDerivation (self: {
pname = "hspec-meta";
version = "1.9.2";
sha256 = "0df54njh3i2gq10rkibqaq36xzv16pd2pp18wy28w6x5xff5hvm5";
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
quickcheckIo random setenv tfRandom time transformers
];
doCheck = false;
meta = {
homepage = "http://hspec.github.io/";
description = "A version of Hspec which is used to test Hspec itself";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})