mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
haskell-crypto-pubkey-types: added version 0.1.0
svn path=/nixpkgs/trunk/; revision=30158
This commit is contained in:
parent
4cf25b19de
commit
4da7dbb56f
@ -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
|
||||
];
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user