forked from mirrors/nixpkgs
haskell-readline: add missing (undeclared) dependencies in readline and ncurses
Fixes https://github.com/NixOS/nixpkgs/issues/6085.
This commit is contained in:
parent
ef87904b6a
commit
928f255c30
1 changed files with 3 additions and 3 deletions
|
@ -94912,16 +94912,16 @@ self: {
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"readline" = callPackage
|
"readline" = callPackage
|
||||||
({ mkDerivation, base, process }:
|
({ mkDerivation, base, ncurses, process, readline }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "readline";
|
pname = "readline";
|
||||||
version = "1.0.3.0";
|
version = "1.0.3.0";
|
||||||
sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0";
|
sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0";
|
||||||
buildDepends = [ base process ];
|
buildDepends = [ base process ];
|
||||||
|
extraLibraries = [ ncurses readline ];
|
||||||
description = "An interface to the GNU readline library";
|
description = "An interface to the GNU readline library";
|
||||||
license = "GPL";
|
license = "GPL";
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
}) { inherit (pkgs) ncurses; inherit (pkgs) readline;};
|
||||||
}) {};
|
|
||||||
|
|
||||||
"readline-statevar" = callPackage
|
"readline-statevar" = callPackage
|
||||||
({ mkDerivation, base, readline, StateVar }:
|
({ mkDerivation, base, readline, StateVar }:
|
||||||
|
|
Loading…
Add table
Reference in a new issue