burp: 2.0.54 -> 2.1.28

This commit is contained in:
Daniel Frank 2018-02-06 21:18:35 +01:00 committed by adisbladis
parent be8cc03ffe
commit bfa1390b47
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, autoreconfHook { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, acl, librsync, ncurses, openssl, zlib, uthash }: , acl, librsync, ncurses, openssl, zlib, uthash }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "burp-${version}"; name = "burp-${version}";
version = "2.0.54"; version = "2.1.28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "grke"; owner = "grke";
repo = "burp"; repo = "burp";
rev = version; rev = version;
sha256 = "1z1w013hqxbfjgri0fan2570qwhgwvm4k4ghajbzqg8kly4fgk5x"; sha256 = "1i8j15pmnn9cn6cd4dnp28qbisq8cl9l4y3chsmil4xqljr9fi5x";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ librsync ncurses openssl zlib uthash ] buildInputs = [ librsync ncurses openssl zlib uthash ]
++ stdenv.lib.optional (!stdenv.isDarwin) acl; ++ stdenv.lib.optional (!stdenv.isDarwin) acl;