mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
SSL support for cadaver DAV client
This commit is contained in:
parent
441cc2fc22
commit
a32e534262
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cadaver-0.23.3";
|
||||
@ -8,6 +8,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x";
|
||||
};
|
||||
|
||||
buildInputs = [openssl];
|
||||
configureFlags = ["--with-ssl"];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A command-line WebDAV client for Unix";
|
||||
homepage = http://www.webdav.org/cadaver;
|
||||
|
Loading…
Reference in New Issue
Block a user