a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
30 lines
824 B
Nix
30 lines
824 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
, acl, librsync, ncurses, openssl, zlib, uthash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "burp";
|
|
version = "2.2.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grke";
|
|
repo = "burp";
|
|
rev = version;
|
|
sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
|
++ lib.optional (!stdenv.isDarwin) acl;
|
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
|
|
|
installFlags = [ "localstatedir=/tmp" ];
|
|
|
|
meta = with lib; {
|
|
description = "BURP - BackUp and Restore Program";
|
|
homepage = "https://burp.grke.org";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ tokudan ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|