sterni (he/him) | cabal2nix --system x86_64-linux https://hackage.haskell.org/package/splitmix-0.1.3.1.tar.gz gives me
{ mkDerivation, async, base, base-compat-batteries, bytestring
, containers, criterion, deepseq, fetchzip, HUnit, lib
, math-functions, process, random, template-haskell, test-framework
, test-framework-hunit, testu01, tf-random, vector
}:
mkDerivation {
pname = "splitmix";
version = "0.1.3.1";
src = fetchzip {
url = "https://hackage.haskell.org/package/splitmix-0.1.3.1.tar.gz";
sha256 = "0mll5axdvh5wan6prh3v6l2n15xsj31ghi0g887ljpk515id5a2w";
};
libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [
async base base-compat-batteries bytestring containers deepseq
HUnit math-functions process random template-haskell test-framework
test-framework-hunit tf-random vector
];
testSystemDepends = [ testu01 ];
benchmarkHaskellDepends = [
base containers criterion random tf-random
];
description = "Fast Splittable PRNG";
license = lib.licenses.bsd3;
}
So this looks fine.
| 15:54:59 |