cadaver: Enable readline support

This commit is contained in:
Daniel Schaefer 2019-11-07 02:29:17 +01:00
parent 92216681cc
commit 34cd476e09

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, openssl }:
{ stdenv, fetchurl, fetchpatch, openssl, readline }:
stdenv.mkDerivation rec {
name = "cadaver-0.23.3";
@ -16,9 +16,9 @@ stdenv.mkDerivation rec {
})
];
configureFlags = [ "--with-ssl" ];
configureFlags = [ "--with-ssl" "--with-readline" ];
buildInputs = [ openssl ];
buildInputs = [ openssl readline ];
meta = with stdenv.lib; {
description = "A command-line WebDAV client";