mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
cadaver: add missing openssl dep
This commit is contained in:
parent
9d5b5668ec
commit
bcdc4a4f00
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, fetchpatch, neon, pkg-config, readline, zlib}:
|
||||
{ lib, stdenv, fetchurl, fetchpatch, neon, pkg-config, readline, zlib, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cadaver";
|
||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = [ "--with-ssl" "--with-readline" ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ neon readline zlib ];
|
||||
buildInputs = [ neon readline zlib openssl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command-line WebDAV client";
|
||||
|
Loading…
Reference in New Issue
Block a user