Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "pure-splitmix"; 9 version = "0.3"; 10 11 src = fetchFromGitHub { 12 owner = "Lysxia"; 13 repo = pname; 14 rev = version; 15 sha256 = "RUnsAB4hMV87ItCyGhc47bHGY1iOwVv9kco2HxnzqbU="; 16 }; 17 18 doCheck = true; 19 20 meta = with lib; { 21 homepage = "https://github.com/Lysxia/pure-splitmix"; 22 description = "Purely functional splittable PRNG"; 23 license = licenses.mit; 24 maintainers = [ maintainers.ulrikstrid ]; 25 }; 26}