about summary refs log tree commit diff
path: root/pkgs/development/guile-modules
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-05-29 21:43:42 +0800
committerGitHub <noreply@github.com>2022-05-29 21:43:42 +0800
commit2eaab1b63601f76876927a90a405979042b973c1 (patch)
tree6b5d19d73a0530690a443a11063b7b582c7be761 /pkgs/development/guile-modules
parent95419841a684995f87cb36cf5a3c65b8b59f8a55 (diff)
parent1d36aafa55bec318896fe9661943e1b081f06217 (diff)
downloadnixlib-2eaab1b63601f76876927a90a405979042b973c1.tar
nixlib-2eaab1b63601f76876927a90a405979042b973c1.tar.gz
nixlib-2eaab1b63601f76876927a90a405979042b973c1.tar.bz2
nixlib-2eaab1b63601f76876927a90a405979042b973c1.tar.lz
nixlib-2eaab1b63601f76876927a90a405979042b973c1.tar.xz
nixlib-2eaab1b63601f76876927a90a405979042b973c1.tar.zst
nixlib-2eaab1b63601f76876927a90a405979042b973c1.zip
Merge pull request #173243 from eikek/update-guile-json
guile-json: 4.7.0 -> 4.7.1 + allow for all platforms
Diffstat (limited to 'pkgs/development/guile-modules')
-rw-r--r--pkgs/development/guile-modules/guile-json/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/guile-modules/guile-json/default.nix b/pkgs/development/guile-modules/guile-json/default.nix
index 1ca6c21c97c8..da15ca2d6ac4 100644
--- a/pkgs/development/guile-modules/guile-json/default.nix
+++ b/pkgs/development/guile-modules/guile-json/default.nix
@@ -8,11 +8,11 @@
 
 stdenv.mkDerivation rec {
   pname = "guile-json";
-  version = "4.7.0";
+  version = "4.7.1";
 
   src = fetchurl {
     url = "mirror://savannah/guile-json/${pname}-${version}.tar.gz";
-    sha256 = "sha256-q70TV3qUUULrkZrpDGosqFZ4STO/9VgQ7l+LM7NBU5c=";
+    sha256 = "sha256-xTSaI4D2fIphOps698mNITJdRDAjNp5vdhs2bpaUaEM=";
   };
 
   postConfigure = ''
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
     homepage = "https://savannah.nongnu.org/projects/guile-json";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ ethancedwards8 ];
-    platforms = platforms.linux;
+    platforms = platforms.all;
   };
 }