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

tf-random: init at 0.5

parent 6798349c
No related merge requests found
......@@ -467,6 +467,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "text-zipper" "0.12"
, callHackage "these" "1.1.1.1"
, callHackage "these-skinny" "0.7.5"
, callHackage "tf-random" "0.5"
, callHackage "th-extras" "0.0.0.6"
, callHackage "th-lift-instances" "0.1.20"
, callHackage "tidal" "1.8.1"
......
......@@ -563,6 +563,8 @@ final: prev: with pkgs.haskell.lib; {
text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { };
tf-random = prev.callPackage (./pkgs/tf-random.nix) { };
th-extras = prev.callPackage (./pkgs/th-extras.nix) { };
th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { };
......
{ mkDerivation, base, lib, primitive, random, time }:
mkDerivation {
pname = "tf-random";
version = "0.5";
sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base primitive random time ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "High-quality splittable pseudorandom number generator";
license = lib.licenses.bsd3;
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