Merge pull request #172832 from LeSuisse/cadaver-zhf-openssl

cadaver: add missing `openssl` dep
main
Thiago Kenji Okada 2 years ago committed by GitHub
commit 77cd72fd9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/tools/networking/cadaver/default.nix

@ -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…
Cancel
Save