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

random-bytestring: init at 0.1.4

parent 55c67f3e
No related merge requests found
......@@ -488,6 +488,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "quickcheck-dynamic" "2.0.0"
, callHackage "quickcheck-instances" "0.3.28"
, callHackage "quickcheck-unicode" "1.0.1.0"
, callHackage "random-bytestring" "0.1.4"
, callHackage "random-shuffle" "0.0.4"
, callHackage "random" "1.2.1.1"
, callHackage "rebase" "1.16"
......
......@@ -691,6 +691,8 @@ self: with pkgs.haskell.lib; {
random = self.callPackage (./pkgs/random.nix) { };
random-bytestring = self.callPackage (./pkgs/random-bytestring.nix) { };
random-shuffle = self.callPackage (./pkgs/random-shuffle.nix) { };
rebase = self.callPackage (./pkgs/rebase.nix) { };
......
{ mkDerivation
, async
, base
, bytestring
, criterion
, cryptonite
, entropy
, ghc-prim
, lib
, mwc-random
, pcg-random
, primitive
, random
}:
mkDerivation {
pname = "random-bytestring";
version = "0.1.4";
sha256 = "920c6feea2e360a96275993191cc89e72784a3787bf4ad7d53eff58e5f209638";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring mwc-random pcg-random ];
benchmarkHaskellDepends = [
async
base
bytestring
criterion
cryptonite
entropy
ghc-prim
mwc-random
pcg-random
primitive
random
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://www.github.com/larskuhtz/random-bytestring";
description = "Efficient generation of random bytestrings";
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