15 lines
418 B
Nix
15 lines
418 B
Nix
{ cabal, HUnit }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hspec-expectations";
|
|
version = "0.3.0.3";
|
|
sha256 = "1ppcbfmcgrd1lwswa293fxwny6khhg4blygfbcsawrvgc5ji0q74";
|
|
buildDepends = [ HUnit ];
|
|
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;
|
|
};
|
|
})
|