summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cryptocipher/default.nix
blob: 754f728aed54c65dd51e853135c1c5680270fffd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, cereal, cryptoApi, primitive, tagged, vector }:

cabal.mkDerivation (self: {
  pname = "cryptocipher";
  version = "0.2.14";
  sha256 = "1r91d9sqc53c628z378fyah7vvmkakvxpwbslam0yhfgp2p0l23z";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ cereal cryptoApi primitive tagged vector ];
  meta = {
    homepage = "http://github.com/vincenthz/hs-cryptocipher";
    description = "Symmetrical Block, Stream and PubKey Ciphers";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})