From 227a22f0b4550985da6980221e2b26d404e258b0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 18 Sep 2013 17:05:15 +0200 Subject: [PATCH] haskell-ncurses: re-generate with recent version of cabal2nix --- pkgs/development/libraries/haskell/ncurses/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/haskell/ncurses/default.nix b/pkgs/development/libraries/haskell/ncurses/default.nix index 438b43c9be9..a290d69ce1e 100644 --- a/pkgs/development/libraries/haskell/ncurses/default.nix +++ b/pkgs/development/libraries/haskell/ncurses/default.nix @@ -1,4 +1,4 @@ -{ cabal, c2hs, ncursesw, panelw, text, transformers }: +{ cabal, c2hs, ncurses, text, transformers }: cabal.mkDerivation (self: { pname = "ncurses"; @@ -6,7 +6,7 @@ cabal.mkDerivation (self: { sha256 = "0mcgbq67f8hfdqmvm3p59949mbxcc2mgjw889zxvxx0174kn205q"; buildDepends = [ text transformers ]; buildTools = [ c2hs ]; - extraLibraries = [ ncursesw panelw ]; + extraLibraries = [ ncurses ]; meta = { homepage = "https://john-millikin.com/software/haskell-ncurses/"; description = "Modernised bindings to GNU ncurses";