From 0ec9765924f4aac9a7142860dd4d67fdc5bdf491 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 16 Sep 2013 10:50:04 +0200 Subject: [PATCH] haskell-dns: update to version 1.0.0 --- pkgs/development/libraries/haskell/dns/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/dns/default.nix b/pkgs/development/libraries/haskell/dns/default.nix index e80f4379aa7..8625aec86b3 100644 --- a/pkgs/development/libraries/haskell/dns/default.nix +++ b/pkgs/development/libraries/haskell/dns/default.nix @@ -1,18 +1,19 @@ { cabal, attoparsec, attoparsecConduit, binary, blazeBuilder -, conduit, hspec, iproute, mtl, network, networkConduit, random +, conduit, doctest, hspec, iproute, mtl, network, networkConduit +, random }: cabal.mkDerivation (self: { pname = "dns"; - version = "0.3.8"; - sha256 = "1x2rfm89qpx7dpxr457i2wqmjry8r28f42j194131mfx4gc4mwdq"; + version = "1.0.0"; + sha256 = "16h7c332qdj77dw8kvrdn1jzhzsnrcybbbm5x7pxvgpnn0wzz8si"; buildDepends = [ attoparsec attoparsecConduit binary blazeBuilder conduit iproute mtl network networkConduit random ]; testDepends = [ - attoparsec attoparsecConduit binary blazeBuilder conduit hspec - iproute mtl network networkConduit random + attoparsec attoparsecConduit binary blazeBuilder conduit doctest + hspec iproute mtl network networkConduit random ]; doCheck = false; meta = {