From 928f255c30ce52c6fed68cb7fd4b9d91561a037f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Feb 2015 11:07:53 +0100 Subject: [PATCH] haskell-readline: add missing (undeclared) dependencies in readline and ncurses Fixes https://github.com/NixOS/nixpkgs/issues/6085. --- pkgs/development/haskell-modules/hackage-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 0cc7273d42bd..9da8097138e4 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -94912,16 +94912,16 @@ self: { }) {}; "readline" = callPackage - ({ mkDerivation, base, process }: + ({ mkDerivation, base, ncurses, process, readline }: mkDerivation { pname = "readline"; version = "1.0.3.0"; sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0"; buildDepends = [ base process ]; + extraLibraries = [ ncurses readline ]; description = "An interface to the GNU readline library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) { inherit (pkgs) ncurses; inherit (pkgs) readline;}; "readline-statevar" = callPackage ({ mkDerivation, base, readline, StateVar }: