Merge pull request #72960 from JohnAZoidberg/cadaver-readline

cadaver: Enable readline support
This commit is contained in:
Aaron Andersen
2019-11-10 07:59:27 -05:00
committed by GitHub

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";