iwd: use default readline for simplicity.

Maybe we'll update it one day :).
This commit is contained in:
Will Dietz 2019-04-22 23:21:00 -05:00
parent 20ba9c03ed
commit 3412b701e5

View file

@ -1,4 +1,4 @@
{ stdenv, fetchgit, autoreconfHook, pkgconfig, ell, coreutils, readline80, python3Packages }:
{ stdenv, fetchgit, autoreconfHook, pkgconfig, ell, coreutils, readline, python3Packages }:
stdenv.mkDerivation rec {
pname = "iwd";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
buildInputs = [
ell
readline80
readline
python3Packages.python
];