summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/crypto-pubkey-types/default.nix
blob: e4234d1d4cd086f635287da900c9d56f1b0c6179 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, asn1Types }:

cabal.mkDerivation (self: {
  pname = "crypto-pubkey-types";
  version = "0.4.0";
  sha256 = "0bapzvd0xgv38mbj1xhzcswchnx81sq0wwyax3qqzcpgvcyz28sl";
  buildDepends = [ asn1Types ];
  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 ];
  };
})