nixpkgs/pkgs/tools/backup/burp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
2023-04-28 20:20:40 +00:00
, acl, librsync, ncurses, openssl_legacy, zlib, uthash }:
2015-11-03 20:37:19 +00:00
stdenv.mkDerivation rec {
pname = "burp";
2022-12-28 20:53:22 +00:00
version = "2.4.0";
2015-11-03 20:37:19 +00:00
2017-06-26 01:44:15 +00:00
src = fetchFromGitHub {
owner = "grke";
repo = "burp";
rev = version;
2022-12-28 20:53:22 +00:00
sha256 = "sha256-y6kRd1jD6t+Q6d5t7W9MDuk+m2Iq1THQkP50PJwI7Nc=";
2015-11-03 20:37:19 +00:00
};
patches = [
# Pull upstream fix for ncurses-6.3 support
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://github.com/grke/burp/commit/1d6c931af7c11f164cf7ad3479781e8f03413496.patch";
sha256 = "14sfbfahlankz3xg6v10i8fnmpnmqpp73q9xm0l0hnjh25igv6bl";
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2023-04-28 20:20:40 +00:00
# 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 ]
2021-01-15 09:19:50 +00:00
++ lib.optional (!stdenv.isDarwin) acl;
2015-11-03 20:37:19 +00:00
2017-06-26 01:44:15 +00:00
configureFlags = [ "--localstatedir=/var" ];
installFlags = [ "localstatedir=/tmp" ];
2015-11-03 20:37:19 +00:00
meta = with lib; {
2015-11-03 20:37:19 +00:00
description = "BURP - BackUp and Restore Program";
homepage = "https://burp.grke.org";
2015-11-03 20:37:19 +00:00
license = licenses.agpl3;
maintainers = with maintainers; [ arjan-s ];
2015-11-03 20:37:19 +00:00
platforms = platforms.all;
};
}