summary refs log tree commit diff
path: root/pkgs/development/libraries/talloc
diff options
context:
space:
mode:
authorWanja Zaeske <wanja.zaeske@dlr.de>2023-01-02 20:08:29 +0100
committerwucke13 <wucke13@gmail.com>2023-01-15 22:20:36 +0100
commit0b1723ccbf160f7e4dc0cb54798a599ca160267d (patch)
tree679e8af7bfb909e1aa5a76589638d874bb80872c /pkgs/development/libraries/talloc
parent300f427c59c7699aa6e8ae238cbee93112d2df71 (diff)
downloadnixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar.gz
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar.bz2
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar.lz
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar.xz
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.tar.zst
nixpkgs-0b1723ccbf160f7e4dc0cb54798a599ca160267d.zip
talloc: 2.3.3 -> 2.3.4
Diffstat (limited to 'pkgs/development/libraries/talloc')
-rw-r--r--pkgs/development/libraries/talloc/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/libraries/talloc/default.nix b/pkgs/development/libraries/talloc/default.nix
index fb52f75f8c1..951a3f1d338 100644
--- a/pkgs/development/libraries/talloc/default.nix
+++ b/pkgs/development/libraries/talloc/default.nix
@@ -13,11 +13,11 @@
 
 stdenv.mkDerivation rec {
   pname = "talloc";
-  version = "2.3.3";
+  version = "2.3.4";
 
   src = fetchurl {
     url = "mirror://samba/talloc/${pname}-${version}.tar.gz";
-    sha256 = "sha256-a+lbI2i9CvHEzXqIFG62zuoY5Gw//JMwv2JitA0diqo=";
+    sha256 = "sha256-F5+eviZeZ+SrLCbK0rfeS2p3xsIS+WaQM4KGnwa+ZQU=";
   };
 
   nativeBuildInputs = [
@@ -37,6 +37,13 @@ stdenv.mkDerivation rec {
     libxcrypt
   ];
 
+  # otherwise the configure script fails with
+  # PYTHONHASHSEED=1 missing! Don't use waf directly, use ./configure and make!
+  preConfigure = ''
+    export PKGCONFIG="$PKG_CONFIG"
+    export PYTHONHASHSEED=1
+  '';
+
   wafPath = "buildtools/bin/waf";
 
   wafConfigureFlags = [