nixpkgs/pkgs/development/libraries/haskell/hspec2/default.nix
Peter Simons 3ff373819e haskell-hspec2: mark package as broken
hspec2 doesn't compile any more, and the package is a "deprecated alpha release
of hspec 2.0" according to the Hackage homepage, i.e. people should simply use
hspec 2.x instead.
2014-12-13 12:54:34 +01:00

18 lines
500 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, hspec, hspecDiscover }:
cabal.mkDerivation (self: {
pname = "hspec2";
version = "0.6.1";
sha256 = "0zlvm7r46q8yhgx2kx9mfrf6x2f5amdbi3a59fh69dsqs4lbgmf4";
buildDepends = [ hspec hspecDiscover ];
meta = {
homepage = "http://hspec.github.io/";
description = "Alpha version of Hspec 2.0";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
broken = true;
};
})