2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
2017-06-25 18:44:15 -07:00
|
|
|
, acl, librsync, ncurses, openssl, zlib, uthash }:
|
2015-11-03 12:37:19 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "burp";
|
2019-02-24 08:17:18 -08:00
|
|
|
version = "2.2.18";
|
2015-11-03 12:37:19 -08:00
|
|
|
|
2017-06-25 18:44:15 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "grke";
|
|
|
|
repo = "burp";
|
|
|
|
rev = version;
|
2019-02-24 08:17:18 -08:00
|
|
|
sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
|
2015-11-03 12:37:19 -08:00
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-06-25 18:44:15 -07:00
|
|
|
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
2021-01-15 01:19:50 -08:00
|
|
|
++ lib.optional (!stdenv.isDarwin) acl;
|
2015-11-03 12:37:19 -08:00
|
|
|
|
2017-06-25 18:44:15 -07:00
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
|
|
|
|
|
|
|
installFlags = [ "localstatedir=/tmp" ];
|
2015-11-03 12:37:19 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-11-03 12:37:19 -08:00
|
|
|
description = "BURP - BackUp and Restore Program";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://burp.grke.org";
|
2015-11-03 12:37:19 -08:00
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ tokudan ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|