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

quickcheck-text: init at 0.1.2.1

parent f6826d90
No related merge requests found
......@@ -607,6 +607,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "quickcheck-dynamic" "2.0.0"
, callHackage "quickcheck-instances" "0.3.28"
, callHackage "quickcheck-io" "0.2.0"
, callHackage "quickcheck-text" "0.1.2.1"
, callHackage "quickcheck-unicode" "1.0.1.0"
, callHackage "random-bytestring" "0.1.4"
, callHackage "random-shuffle" "0.0.4"
......
......@@ -939,6 +939,8 @@ self: with pkgs.haskell.lib; {
quickcheck-io = self.callPackage (./pkgs/quickcheck-io.nix) { };
quickcheck-text = self.callPackage (./pkgs/quickcheck-text.nix) { };
quickcheck-unicode = self.callPackage (./pkgs/quickcheck-unicode.nix) { };
random = self.callPackage (./pkgs/random.nix) { };
......
{ mkDerivation, base, binary, bytestring, lib, QuickCheck, text }:
mkDerivation {
pname = "quickcheck-text";
version = "0.1.2.1";
sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base binary bytestring QuickCheck text ];
testHaskellDepends = [ base bytestring QuickCheck text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/olorin/quickcheck-text";
description = "Alternative arbitrary instance for Text";
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