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

31 lines
841 B
Nix
Raw Normal View History

2018-02-06 20:18:35 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
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 {
2017-06-26 01:44:15 +00:00
name = "burp-${version}";
version = "2.1.32";
2015-11-03 20:37:19 +00:00
2017-06-26 01:44:15 +00:00
src = fetchFromGitHub {
owner = "grke";
repo = "burp";
rev = version;
sha256 = "1izs5vavffvj6z478s5x1shg71p2v5bnnrsam1avs21ylxbfnxi5";
2015-11-03 20:37:19 +00:00
};
2018-02-06 20:18:35 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-06-26 01:44:15 +00:00
buildInputs = [ librsync ncurses openssl zlib uthash ]
2015-11-03 20:37:19 +00:00
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
2017-06-26 01:44:15 +00: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 03:03:23 +00:00
homepage = https://burp.grke.org;
2015-11-03 20:37:19 +00:00
license = licenses.agpl3;
maintainers = with maintainers; [ tokudan ];
platforms = platforms.all;
};
}