From cd306852ad0bdc76c0fce9c2f9970f54c962fabe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 10 Feb 2012 11:32:45 +0000 Subject: [PATCH] haskell-crypto-conduit: added version 0.1.3.1 svn path=/nixpkgs/trunk/; revision=32177 --- .../libraries/haskell/crypto-conduit/default.nix | 14 ++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 pkgs/development/libraries/haskell/crypto-conduit/default.nix diff --git a/pkgs/development/libraries/haskell/crypto-conduit/default.nix b/pkgs/development/libraries/haskell/crypto-conduit/default.nix new file mode 100644 index 00000000000..5882fe3c5bf --- /dev/null +++ b/pkgs/development/libraries/haskell/crypto-conduit/default.nix @@ -0,0 +1,14 @@ +{ cabal, cereal, conduit, cryptoApi, transformers }: + +cabal.mkDerivation (self: { + pname = "crypto-conduit"; + version = "0.1.3.1"; + sha256 = "0b8n2njz2ccdb9gql79l96jgv1nlq4ls09d25a2yy9f69w7h1ww5"; + buildDepends = [ cereal conduit cryptoApi transformers ]; + meta = { + homepage = "https://github.com/meteficha/crypto-conduit"; + description = "Conduit interface for cryptographic operations (from crypto-api)"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 75737781652..1ce97f035b1 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -578,6 +578,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {}; + cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {}; + cryptohash = callPackage ../development/libraries/haskell/cryptohash {}; cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {};