2018-02-06 12:18:35 -08:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
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
|
|
|
};
|
|
|
|
|
2018-02-06 12:18:35 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-06-25 18:44:15 -07:00
|
|
|
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
2015-11-03 12:37:19 -08:00
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
|
|
|
|
|
2017-06-25 18:44:15 -07:00
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
|
|
|
|
|
|
|
installFlags = [ "localstatedir=/tmp" ];
|
2015-11-03 12:37:19 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|