ba08d7ed06
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. These checks were done: - built on NixOS - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/vss_strip help’ got 0 exit code - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/bedup -V’ and found version 2.1.32 - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/bsparse -V’ and found version 2.1.32 - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/burp -v’ and found version 2.1.32 - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/burp_ca -h’ got 0 exit code - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/burp_ca --help’ got 0 exit code - ran ‘/nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32/bin/burp_ca help’ got 0 exit code - found 2.1.32 with grep in /nix/store/byii5dn5c62s50mg7gz2vjiqhgwa4wlb-burp-2.1.32 - directory tree listing: https://gist.github.com/04574e27524ea2d8cf54af1b381a7277
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.1.32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grke";
|
|
repo = "burp";
|
|
rev = version;
|
|
sha256 = "1izs5vavffvj6z478s5x1shg71p2v5bnnrsam1avs21ylxbfnxi5";
|
|
};
|
|
|
|
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 = http://burp.grke.org;
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ tokudan ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|