2018-02-06 20:18:35 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
2017-06-26 02:44:15 +01:00
|
|
|
, acl, librsync, ncurses, openssl, zlib, uthash }:
|
2015-11-03 20:37:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-06-26 02:44:15 +01:00
|
|
|
name = "burp-${version}";
|
2019-02-24 16:17:18 +00:00
|
|
|
version = "2.2.18";
|
2015-11-03 20:37:19 +00:00
|
|
|
|
2017-06-26 02:44:15 +01: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
|
|
|
};
|
|
|
|
|
2018-02-06 20:18:35 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-06-26 02:44:15 +01:00
|
|
|
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
2015-11-03 20:37:19 +00:00
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
|
|
|
|
|
2017-06-26 02:44:15 +01:00
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
|
|
|
|
|
|
|
installFlags = [ "localstatedir=/tmp" ];
|
2015-11-03 20:37:19 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "BURP - BackUp and Restore Program";
|
2018-05-01 04:03:23 +01:00
|
|
|
homepage = https://burp.grke.org;
|
2015-11-03 20:37:19 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ tokudan ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|