1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-crypto-random-api: add version 0.1.0

This commit is contained in:
Peter Simons 2012-12-03 15:46:23 +01:00
parent 440e52ff4b
commit 6ebd25484e
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, entropy }:
cabal.mkDerivation (self: {
pname = "crypto-random-api";
version = "0.1.0";
sha256 = "1zx05hskzdxm0kfj6x9qsx8f659zv77pa189s3xg56i7h18d25md";
buildDepends = [ entropy ];
meta = {
homepage = "http://github.com/vincenthz/hs-crypto-random-api";
description = "Simple random generators API for cryptography related code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -632,6 +632,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {}; cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {};
cryptoRandomApi = callPackage ../development/libraries/haskell/crypto-random-api {};
cuda = callPackage ../development/libraries/haskell/cuda { cuda = callPackage ../development/libraries/haskell/cuda {
inherit (pkgs.linuxPackages) nvidia_x11; inherit (pkgs.linuxPackages) nvidia_x11;
}; };