From d19ed54693c51333f4e35195de352d765d78e6ad Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 1 Nov 2011 19:03:01 +0000 Subject: haskell-cryptocipher: added version 0.3.0 svn path=/nixpkgs/trunk/; revision=30169 --- .../libraries/haskell/cryptocipher/0.2.14.nix | 20 ++++++++++++++++++++ .../libraries/haskell/cryptocipher/0.3.0.nix | 20 ++++++++++++++++++++ .../libraries/haskell/cryptocipher/default.nix | 20 -------------------- 3 files changed, 40 insertions(+), 20 deletions(-) create mode 100644 pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix create mode 100644 pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix delete mode 100644 pkgs/development/libraries/haskell/cryptocipher/default.nix (limited to 'pkgs/development/libraries') diff --git a/pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix b/pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix new file mode 100644 index 00000000000..754f728aed5 --- /dev/null +++ b/pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix @@ -0,0 +1,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 + ]; + }; +}) diff --git a/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix b/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix new file mode 100644 index 00000000000..a1cbb48b463 --- /dev/null +++ b/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix @@ -0,0 +1,20 @@ +{ cabal, cereal, cryptoApi, cryptoPubkeyTypes, primitive, tagged +, vector +}: + +cabal.mkDerivation (self: { + pname = "cryptocipher"; + version = "0.3.0"; + sha256 = "17jbzssdbprspadz5ynyam60l5iw7s809irklfg1ii89x26mlyix"; + isLibrary = true; + isExecutable = true; + buildDepends = [ + cereal cryptoApi cryptoPubkeyTypes 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; + }; +}) diff --git a/pkgs/development/libraries/haskell/cryptocipher/default.nix b/pkgs/development/libraries/haskell/cryptocipher/default.nix deleted file mode 100644 index 754f728aed5..00000000000 --- a/pkgs/development/libraries/haskell/cryptocipher/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ 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 - ]; - }; -}) -- cgit 1.4.1