summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Frank <git@danielfrank.net>2018-02-06 21:18:35 +0100
committeradisbladis <adis@blad.is>2018-02-07 10:01:42 +0800
commitbfa1390b47634c0a9af7c34df515cc1d12f4e8ba (patch)
tree846d3ff7da83dc7997f6270d2528ed893b4b3fef
parentbe8cc03ffeb40e05bfd37c7b05008ed116f543bc (diff)
downloadnixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar.gz
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar.bz2
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar.lz
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar.xz
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.tar.zst
nixlib-bfa1390b47634c0a9af7c34df515cc1d12f4e8ba.zip
burp: 2.0.54 -> 2.1.28
-rw-r--r--pkgs/tools/backup/burp/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/backup/burp/default.nix b/pkgs/tools/backup/burp/default.nix
index 783a0796e91b..5540822c99b5 100644
--- a/pkgs/tools/backup/burp/default.nix
+++ b/pkgs/tools/backup/burp/default.nix
@@ -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;