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

31 lines
841 B
Nix
Raw Normal View History

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 {
2017-06-25 18:44:15 -07:00
name = "burp-${version}";
version = "2.1.32";
2015-11-03 12:37:19 -08:00
2017-06-25 18:44:15 -07:00
src = fetchFromGitHub {
owner = "grke";
repo = "burp";
rev = version;
sha256 = "1izs5vavffvj6z478s5x1shg71p2v5bnnrsam1avs21ylxbfnxi5";
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";
2018-04-30 20:03:23 -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;
};
}