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

haskell-crypto-pubkey-types: added version 0.1.0

svn path=/nixpkgs/trunk/; revision=30158
This commit is contained in:
Peter Simons 2011-10-31 22:38:44 +00:00
parent 4cf25b19de
commit 4da7dbb56f
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ cabal, cryptoApi }:
cabal.mkDerivation (self: {
pname = "crypto-pubkey-types";
version = "0.1.0";
sha256 = "1ib5bqxydvv37l53wl6b4j6m6y904rsiamhh144lm6rmqiym26f5";
buildDepends = [ cryptoApi ];
meta = {
homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types";
description = "Generic cryptography Public keys algorithm types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View file

@ -498,6 +498,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {};
csv = callPackage ../development/libraries/haskell/csv {};
cssText = callPackage ../development/libraries/haskell/css-text {};