1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/hspec-expectations/default.nix

17 lines
525 B
Nix

{ cabal, hspec, HUnit, markdownUnlit, silently }:
cabal.mkDerivation (self: {
pname = "hspec-expectations";
version = "0.5.0.1";
sha256 = "0r1yy94q30gp3wyif7qfa22gn3g2lrszwygsy4wknc396fab7mvj";
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;
};
})