tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
burp: build with openssl_legacy
Arjan Schrijver
2 years ago
44311822
17b00c9e
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
backup
burp
default.nix
+4
-2
pkgs/tools/backup/burp/default.nix
···
1
1
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
2
2
-
, acl, librsync, ncurses, openssl, zlib, uthash }:
2
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
25
-
buildInputs = [ librsync ncurses openssl zlib uthash ]
25
25
+
# use openssl_legacy due to burp-2.4.0 not supporting file encryption with openssl 3.0
26
26
+
# replace with 'openssl' once burp-3.x has been declared stable and this package upgraded
27
27
+
buildInputs = [ librsync ncurses openssl_legacy zlib uthash ]
26
28
++ lib.optional (!stdenv.isDarwin) acl;
27
29
28
30
configureFlags = [ "--localstatedir=/var" ];