From d2f9333dca08f66f91f525661d8a5b85cf1f959d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20L=C3=B6h?= Date: Mon, 20 Apr 2009 14:30:01 +0000 Subject: [PATCH] Made it even worse -- hopefully fixed now, sorry. svn path=/nixpkgs/trunk/; revision=15186 --- pkgs/applications/editors/leksah/default.nix | 4 ++-- pkgs/top-level/haskell-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/leksah/default.nix b/pkgs/applications/editors/leksah/default.nix index 9943ce39ba8..9e576bb9109 100644 --- a/pkgs/applications/editors/leksah/default.nix +++ b/pkgs/applications/editors/leksah/default.nix @@ -1,4 +1,4 @@ -{cabal, gtk2hs, binary, parsec, regexPosix, utf8_string, libedit, makeWrapper}: +{cabal, gtk2hs, binary, parsec, regexPosix, utf8String, libedit, makeWrapper}: cabal.mkDerivation (self : { pname = "leksah"; @@ -6,7 +6,7 @@ cabal.mkDerivation (self : { sha256 = "092a8gi73jhalgs4ppg8ki761vwk3gdnjwlyd4chnahbv5i1wrjw"; # !!! The explicit libedit dependency shouldn't be necessary. - extraBuildInputs = [gtk2hs binary parsec regexPosix utf8_string libedit makeWrapper]; + extraBuildInputs = [gtk2hs binary parsec regexPosix utf8String libedit makeWrapper]; preConfigure = '' diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index cb21f1a0e3b..396c895b237 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -192,7 +192,7 @@ rec { inherit cabal; }; - utf8String = import ../development/libraries/haskell/utf8String { + utf8String = import ../development/libraries/haskell/utf8-string { inherit cabal; };