mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
fa693e95f4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/burp/versions
31 lines
840 B
Nix
31 lines
840 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
, acl, librsync, ncurses, openssl, zlib, uthash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "burp-${version}";
|
|
version = "2.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grke";
|
|
repo = "burp";
|
|
rev = version;
|
|
sha256 = "0y63z1vcm5h7s0q5lv94gpdqnfgi2qb0g0h81idai5p0yqw09v8h";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
|
|
|
|
configureFlags = [ "--localstatedir=/var" ];
|
|
|
|
installFlags = [ "localstatedir=/tmp" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "BURP - BackUp and Restore Program";
|
|
homepage = https://burp.grke.org;
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ tokudan ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|