summary refs log tree commit diff
path: root/pkgs/development/libraries/libbutl
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-10-22 18:21:09 -0700
committerRyan Burns <rtburns@protonmail.com>2021-10-24 13:03:48 -0700
commit1c6b48a4234869f4db35d96240b834e5e9137c01 (patch)
tree7ffb64e5beaa03a9bcfbdf5fd2dc469690562e73 /pkgs/development/libraries/libbutl
parent5739ba1a27b9a53bdc92ae7e769b1f052440db4b (diff)
downloadnixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar.gz
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar.bz2
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar.lz
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar.xz
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.tar.zst
nixpkgs-1c6b48a4234869f4db35d96240b834e5e9137c01.zip
build2: 0.13.0 -> 0.14.0
This is a breaking update (at least for the internal C++ APIs) so the
packages all need to be updated in lockstep.

Misc notes:

* build2
  * Remove unnecessary pkg-config patch
  * Trivially refresh remove-config-store-paths.patch
* libbutl
  * Enable tests now that they work with NDEBUG
* libodb
  * update 2.5.0-b.19 -> 2.5.0-b.21
Diffstat (limited to 'pkgs/development/libraries/libbutl')
-rw-r--r--pkgs/development/libraries/libbutl/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libbutl/default.nix b/pkgs/development/libraries/libbutl/default.nix
index 4fb76bdcf32..5bb6be030a4 100644
--- a/pkgs/development/libraries/libbutl/default.nix
+++ b/pkgs/development/libraries/libbutl/default.nix
@@ -8,13 +8,13 @@
 
 stdenv.mkDerivation rec {
   pname = "libbutl";
-  version = "0.13.0";
+  version = "0.14.0";
 
   outputs = [ "out" "dev" "doc" ];
 
   src = fetchurl {
     url = "https://pkg.cppget.org/1/alpha/build2/libbutl-${version}.tar.gz";
-    sha256 = "d7944637ab4a17d3a299c04ff6f146e89b2a0f433ddd9d08d8632a25bae9c9cb";
+    sha256 = "sha256-zKufrUsLZmjw6pNbOAv+dPyolWpgXgygEnW0Lka6zw8=";
   };
 
   nativeBuildInputs = [
@@ -36,9 +36,7 @@ stdenv.mkDerivation rec {
     "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}"
   ];
 
-  # tests broken with -DNDEBUG
-  # https://github.com/build2/libbutl/issues/4
-  # doCheck = true;
+  doCheck = true;
 
   meta = with lib; {
     description = "build2 utility library";