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

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

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
2017-06-26 01:44:15 +00:00
, acl, librsync, ncurses, openssl, zlib, uthash }:
2015-11-03 20:37:19 +00:00
stdenv.mkDerivation rec {
pname = "burp";
2019-02-24 16:17:18 +00:00
version = "2.2.18";
2015-11-03 20:37:19 +00:00
2017-06-26 01:44:15 +00:00
src = fetchFromGitHub {
owner = "grke";
repo = "burp";
rev = version;
2019-02-24 16:17:18 +00:00
sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
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 ];
2017-06-26 01:44:15 +00:00
buildInputs = [ librsync ncurses openssl 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; [ tokudan ];
platforms = platforms.all;
};
}