diff --git a/pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix b/pkgs/development/libraries/haskell/cryptocipher/0.2.14.nix deleted file mode 100644 index 754f728aed54..000000000000 --- a/pkgs/development/libraries/haskell/cryptocipher/0.2.14.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 - ]; - }; -}) diff --git a/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix b/pkgs/development/libraries/haskell/cryptocipher/default.nix similarity index 100% rename from pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix rename to pkgs/development/libraries/haskell/cryptocipher/default.nix diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 07061fcc2f58..6c78b9c8f7b0 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -494,9 +494,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y); cryptoApi = callPackage ../development/libraries/haskell/crypto-api {}; - cryptocipher_0_2_14 = callPackage ../development/libraries/haskell/cryptocipher/0.2.14.nix {}; - cryptocipher_0_3_0 = callPackage ../development/libraries/haskell/cryptocipher/0.3.0.nix {}; - cryptocipher = self.cryptocipher_0_2_14; + cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {}; cryptohash = callPackage ../development/libraries/haskell/cryptohash {};