about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-22 12:56:57 +0100
committerGitHub <noreply@github.com>2024-02-22 12:56:57 +0100
commit2a56c2ca6814a31f8211dad09302398a06acbcdf (patch)
tree31af5de9cf6e2753881f116535e102f45c244c0f
parent32fac970667bf593c897e41bb542a2ab2047e697 (diff)
parent4ed2297e2f2fa7ec6d2b1c7c8a30969a6e0a8102 (diff)
downloadnixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar.gz
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar.bz2
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar.lz
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar.xz
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.tar.zst
nixlib-2a56c2ca6814a31f8211dad09302398a06acbcdf.zip
Merge pull request #290574 from Wulfsta/libfive
libfive: update outdated version string
-rw-r--r--pkgs/development/libraries/libfive/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libfive/default.nix b/pkgs/development/libraries/libfive/default.nix
index 1d8f57a817c3..3f3c7f753c70 100644
--- a/pkgs/development/libraries/libfive/default.nix
+++ b/pkgs/development/libraries/libfive/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , wrapQtAppsHook
 , fetchFromGitHub
+, unstableGitUpdater
 , cmake
 , ninja
 , pkg-config
@@ -17,7 +18,7 @@
 
 stdenv.mkDerivation {
   pname = "libfive";
-  version = "unstable-2023-06-07";
+  version = "0-unstable-2024-02-14";
 
   src = fetchFromGitHub {
     owner = "libfive";
@@ -95,6 +96,8 @@ stdenv.mkDerivation {
     "libfive.stdlib"
   ];
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     description = "Infrastructure for solid modeling with F-Reps in C, C++, and Guile";
     homepage = "https://libfive.com/";