mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
Merge pull request #172832 from LeSuisse/cadaver-zhf-openssl
cadaver: add missing `openssl` dep
This commit is contained in:
commit
77cd72fd9b
@ -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