burp: build with openssl_legacy

+4 -2
+4 -2
pkgs/tools/backup/burp/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config 2 - , acl, librsync, ncurses, openssl, zlib, uthash }: 2 + , acl, librsync, ncurses, openssl_legacy, zlib, uthash }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "burp"; ··· 22 22 ]; 23 23 24 24 nativeBuildInputs = [ autoreconfHook pkg-config ]; 25 - buildInputs = [ librsync ncurses openssl zlib uthash ] 25 + # use openssl_legacy due to burp-2.4.0 not supporting file encryption with openssl 3.0 26 + # replace with 'openssl' once burp-3.x has been declared stable and this package upgraded 27 + buildInputs = [ librsync ncurses openssl_legacy zlib uthash ] 26 28 ++ lib.optional (!stdenv.isDarwin) acl; 27 29 28 30 configureFlags = [ "--localstatedir=/var" ];