1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 09:53:17 +00:00
nixpkgs/pkgs/development/libraries/haskell/hspec-meta/default.nix

24 lines
759 B
Nix
Raw Normal View History

{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit
, QuickCheck, quickcheckIo, random, setenv, time, transformers
2013-02-24 21:11:11 +00:00
}:
cabal.mkDerivation (self: {
pname = "hspec-meta";
version = "1.5.2";
sha256 = "1kzlppbp8ralkpi89qrfdm5yrr72b9iq4nrvmblyjrb67h9412q0";
2013-02-24 21:11:11 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
quickcheckIo random setenv time transformers
2013-02-24 21:11:11 +00:00
];
doCheck = false;
meta = {
homepage = "http://hspec.github.com/";
description = "A version of Hspec which is used to test Hspec itself";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
2013-02-24 21:11:11 +00:00
};
})