Skip to content
Snippets Groups Projects
Commit 8d31438c authored by Daniel Firth's avatar Daniel Firth
Browse files

generic-arbitrary: init at 1.0.1

parent 7183b00b
No related merge requests found
...@@ -181,6 +181,7 @@ let otherLibraries = ...@@ -181,6 +181,7 @@ let otherLibraries =
"https://github.com/Quid2/flat" "https://github.com/Quid2/flat"
"2121ee96201e39764e3a6fcbc53241afb0050647" "2121ee96201e39764e3a6fcbc53241afb0050647"
(None H.Subdir) (None H.Subdir)
, H.callHackage "generic-arbitrary" "1.0.1"
, H.callHackage "generic-lens" "2.2.1.0" , H.callHackage "generic-lens" "2.2.1.0"
, H.callHackage "generic-monoid" "0.1.0.1" , H.callHackage "generic-monoid" "0.1.0.1"
, H.callGit , H.callGit
......
...@@ -131,6 +131,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -131,6 +131,8 @@ final: prev: with pkgs.haskell.lib; {
flat = final.callPackage (./pkgs/flat.nix) { }; flat = final.callPackage (./pkgs/flat.nix) { };
generic-arbitrary = final.callPackage (./pkgs/generic-arbitrary.nix) { };
generic-lens = final.callPackage (./pkgs/generic-lens.nix) { }; generic-lens = final.callPackage (./pkgs/generic-lens.nix) { };
generic-monoid = final.callPackage (./pkgs/generic-monoid.nix) { }; generic-monoid = final.callPackage (./pkgs/generic-monoid.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, deepseq
, lib
, tasty
, tasty-discover
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "generic-arbitrary";
version = "1.0.1";
sha256 = "92013ed9d38370bedad67a05deabc203bfdfd5a74ebec17554270e8ed22c29c7";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base QuickCheck ];
testHaskellDepends = [
base
deepseq
QuickCheck
tasty
tasty-discover
tasty-hunit
tasty-quickcheck
];
testToolDepends = [ tasty-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/typeable/generic-arbitrary#readme";
description = "Generic implementation for QuickCheck's Arbitrary";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment