3
0
Fork 0
forked from mirrors/nixpkgs

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