From 429e248af766a95136be2c7f31a500e04ad34095 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 30 Mar 2014 22:06:56 +0200 Subject: [PATCH] haskell-project-template: update to version 0.1.4.1 --- .../haskell/project-template/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/haskell/project-template/default.nix b/pkgs/development/libraries/haskell/project-template/default.nix index d5cd0da22a32..58dc06e6aa58 100644 --- a/pkgs/development/libraries/haskell/project-template/default.nix +++ b/pkgs/development/libraries/haskell/project-template/default.nix @@ -1,18 +1,19 @@ -{ cabal, base64Bytestring, conduit, hspec, mtl, QuickCheck -, resourcet, systemFileio, systemFilepath, text, transformers +{ cabal, base64Bytestring, conduit, conduitExtra, hspec, mtl +, QuickCheck, resourcet, systemFileio, systemFilepath, text +, transformers }: cabal.mkDerivation (self: { pname = "project-template"; - version = "0.1.4"; - sha256 = "1fmpb7jrn7mry8wq5jyxhkwyr61fknhi7p8mmqs7xn8lxwbj5904"; + version = "0.1.4.1"; + sha256 = "1vsx8a4kzdcwbdy47hb2wz32najsa6bqq6jkyal9nbc5ydwb65lb"; buildDepends = [ - base64Bytestring conduit mtl resourcet systemFileio systemFilepath - text transformers + base64Bytestring conduit conduitExtra mtl resourcet systemFileio + systemFilepath text transformers ]; testDepends = [ - base64Bytestring conduit hspec QuickCheck systemFilepath text - transformers + base64Bytestring conduit hspec QuickCheck resourcet systemFilepath + text transformers ]; meta = { homepage = "https://github.com/fpco/haskell-ide";