nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

grilo: add darwin support

+12 -4
+1 -1
pkgs/development/libraries/gom/default.nix
··· 58 58 description = "A GObject to SQLite object mapper"; 59 59 homepage = "https://wiki.gnome.org/Projects/Gom"; 60 60 license = licenses.lgpl21Plus; 61 - platforms = platforms.linux; 61 + platforms = platforms.unix; 62 62 maintainers = teams.gnome.members; 63 63 }; 64 64 }
+1 -1
pkgs/development/libraries/grilo-plugins/default.nix
··· 94 94 description = "A collection of plugins for the Grilo framework"; 95 95 maintainers = teams.gnome.members; 96 96 license = licenses.lgpl21Plus; 97 - platforms = platforms.linux; 97 + platforms = platforms.unix; 98 98 }; 99 99 }
+9 -1
pkgs/development/libraries/grilo/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchurl 4 + , fetchpatch 4 5 , meson 5 6 , mesonEmulatorHook 6 7 , ninja ··· 34 33 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 35 34 sha256 = "81Ks9zZlZpk0JwY2/t5mtS2mgB/iD2OMQEirJnhXey0="; 36 35 }; 36 + 37 + patches = [ 38 + (fetchpatch { 39 + url = "https://gitlab.gnome.org/GNOME/grilo/-/commit/b0d75be00b06cb0163dabbedecf9122a55273349.patch"; 40 + sha256 = "sha256-Hwnc3TLN6n3w/MAFcprHv7nbTcwRfI0cmfDriNLnAvQ="; 41 + }) 42 + ]; 37 43 38 44 mesonFlags = [ 39 45 "-Denable-gtk-doc=true" ··· 81 73 description = "Framework that provides access to various sources of multimedia content, using a pluggable system"; 82 74 maintainers = teams.gnome.members; 83 75 license = licenses.lgpl2Plus; 84 - platforms = platforms.linux; 76 + platforms = platforms.unix; 85 77 }; 86 78 }
+1 -1
pkgs/development/libraries/libmediaart/default.nix
··· 33 33 description = "Library tasked with managing, extracting and handling media art caches"; 34 34 maintainers = teams.gnome.members; 35 35 license = licenses.gpl2; 36 - platforms = platforms.linux; 36 + platforms = platforms.unix; 37 37 }; 38 38 }