about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-07-09 19:55:26 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-07-10 00:23:42 -0300
commit43f27e9e60f786dbb2fe4ecfb21ac684ad11c927 (patch)
tree0032a219822f0a918d93b015c0a8da8739b9c289 /pkgs/development/libraries
parent2169d3b0bce0daa64d05abbdf9da552a7b8c22a7 (diff)
downloadnixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar.gz
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar.bz2
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar.lz
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar.xz
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.tar.zst
nixlib-43f27e9e60f786dbb2fe4ecfb21ac684ad11c927.zip
libbytesize: 2.8 -> 2.9
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libbytesize/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libbytesize/default.nix b/pkgs/development/libraries/libbytesize/default.nix
index 52a3d3112f22..fd5a18f85487 100644
--- a/pkgs/development/libraries/libbytesize/default.nix
+++ b/pkgs/development/libraries/libbytesize/default.nix
@@ -16,13 +16,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "libbytesize";
-  version = "2.8";
+  version = "2.9";
 
   src = fetchFromGitHub {
     owner = "storaged-project";
     repo = "libbytesize";
     rev = finalAttrs.version;
-    hash = "sha256-/TVv/srhbotIkne0G77hgBF4j+74INqVUr8zlKsaoM0=";
+    hash = "sha256-4jbu8Hmc4I1IYKiWlCQq7ob98HsgDTqJdghj3ZzOuN8=";
   };
 
   outputs = [ "out" "dev" "devdoc" "man" ];
@@ -44,6 +44,8 @@ stdenv.mkDerivation (finalAttrs: {
     pcre2
   ];
 
+  strictDeps = true;
+
   meta = {
     homepage = "https://github.com/storaged-project/libbytesize";
     description = "A tiny library providing a C 'class' for working with arbitrary big sizes in bytes";