1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-17 18:34:41 +00:00

haskell-errorcall-eq-instance: add version 0.1.0

This commit is contained in:
Peter Simons 2013-12-09 12:57:47 +01:00
parent ebdff3841a
commit 6b5f1f35fb
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal, hspec, QuickCheck }:
cabal.mkDerivation (self: {
pname = "errorcall-eq-instance";
version = "0.1.0";
sha256 = "1sr2wxbdqzpdawcivvd01nwpki0xbcxylz5qv95b96sq6b296gkk";
testDepends = [ hspec QuickCheck ];
meta = {
description = "An orphan Eq instance for ErrorCall";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -966,6 +966,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
erf = callPackage ../development/libraries/haskell/erf {};
errorcallEqInstance = callPackage ../development/libraries/haskell/errorcall-eq-instance {};
errors = callPackage ../development/libraries/haskell/errors {};
either = callPackage ../development/libraries/haskell/either {};