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

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