mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #72960 from JohnAZoidberg/cadaver-readline
cadaver: Enable readline support
This commit is contained in:
commit
377e6915d3
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue