An error occurred while loading the file. Please try again.
-
Daniel Firth authored57a24434
binary-orphans.nix 674 B
{ mkDerivation
, base
, binary
, lib
, OneTuple
, QuickCheck
, quickcheck-instances
, tagged
, tasty
, tasty-quickcheck
, transformers
}:
mkDerivation {
pname = "binary-orphans";
version = "1.0.3";
sha256 = "e2e554823ce6758cbbfb64acb8b5905d3c226eab18b5fcaf5d7c79252114602c";
libraryHaskellDepends = [ base binary transformers ];
testHaskellDepends = [
base
binary
OneTuple
QuickCheck
quickcheck-instances
tagged
tasty
tasty-quickcheck
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Compatibility package for binary; provides instances";
license = lib.licenses.bsd3;
}