lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #173243 from eikek/update-guile-json

guile-json: 4.7.0 -> 4.7.1 + allow for all platforms

authored by

Bobby Rong and committed by
GitHub
2eaab1b6 95419841

+3 -3
+3 -3
pkgs/development/guile-modules/guile-json/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "guile-json"; 11 - version = "4.7.0"; 11 + version = "4.7.1"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://savannah/guile-json/${pname}-${version}.tar.gz"; 15 - sha256 = "sha256-q70TV3qUUULrkZrpDGosqFZ4STO/9VgQ7l+LM7NBU5c="; 15 + sha256 = "sha256-xTSaI4D2fIphOps698mNITJdRDAjNp5vdhs2bpaUaEM="; 16 16 }; 17 17 18 18 postConfigure = '' ··· 34 34 homepage = "https://savannah.nongnu.org/projects/guile-json"; 35 35 license = licenses.gpl3Plus; 36 36 maintainers = with maintainers; [ ethancedwards8 ]; 37 - platforms = platforms.linux; 37 + platforms = platforms.all; 38 38 }; 39 39 }