Unverified Commit 0fedd63a authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #228787 from arjan-s/fix-burp-openssl

burp: build with openssl_legacy
parents fdf32c58 44311822
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
, acl, librsync, ncurses, openssl, zlib, uthash }:
, acl, librsync, ncurses, openssl_legacy, zlib, uthash }:

stdenv.mkDerivation rec {
  pname = "burp";
@@ -22,7 +22,9 @@ stdenv.mkDerivation rec {
  ];

  nativeBuildInputs = [ autoreconfHook pkg-config ];
  buildInputs = [ librsync ncurses openssl zlib uthash ]
  # use openssl_legacy due to burp-2.4.0 not supporting file encryption with openssl 3.0
  # replace with 'openssl' once burp-3.x has been declared stable and this package upgraded
  buildInputs = [ librsync ncurses openssl_legacy zlib uthash ]
    ++ lib.optional (!stdenv.isDarwin) acl;

  configureFlags = [ "--localstatedir=/var" ];