mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
14 lines
381 B
Nix
14 lines
381 B
Nix
{ 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;
|
|
};
|
|
})
|