From 4e31c212baa9874fee2b01b31f1ac2b816304b18 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 31 Oct 2014 11:38:16 +0100 Subject: [PATCH] haskell-ghcid: update to version 0.3.1 --- pkgs/development/tools/haskell/ghcid/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/haskell/ghcid/default.nix b/pkgs/development/tools/haskell/ghcid/default.nix index a14eb1b48f5..3ad43076a41 100644 --- a/pkgs/development/tools/haskell/ghcid/default.nix +++ b/pkgs/development/tools/haskell/ghcid/default.nix @@ -1,15 +1,19 @@ # This file was auto-generated by cabal2nix. Please do NOT edit manually! -{ cabal, cmdargs, filepath, tasty, tastyHunit, time }: +{ cabal, cmdargs, extra, filepath, tasty, tastyHunit, terminalSize +, time +}: cabal.mkDerivation (self: { pname = "ghcid"; - version = "0.2"; - sha256 = "1g0jwj8s0rgwrdgyn6dwrqhf9v4kck5kfr4ggmp9c0mjjyfxq6pf"; + version = "0.3.1"; + sha256 = "09dyynqa42q6rcms8pghlyih8a3fahb5fbhc500grqc094kgfs7c"; isLibrary = true; isExecutable = true; - buildDepends = [ cmdargs filepath time ]; - testDepends = [ cmdargs filepath tasty tastyHunit time ]; + buildDepends = [ cmdargs extra filepath terminalSize time ]; + testDepends = [ + cmdargs extra filepath tasty tastyHunit terminalSize time + ]; doCheck = false; meta = { homepage = "https://github.com/ndmitchell/ghcid#readme";