From 5dfe0f7ee624389debc63772b7e110826ba384ba Mon Sep 17 00:00:00 2001 From: Hamish Mackenzie Date: Mon, 10 Apr 2017 23:17:16 -0700 Subject: [PATCH] gtksourceview: fix version 3 on macOS Add darwin to the list of supported platforms for gtksourceview. --- pkgs/desktops/gnome-3/3.22/core/gtksourceview/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/3.22/core/gtksourceview/default.nix b/pkgs/desktops/gnome-3/3.22/core/gtksourceview/default.nix index aac1739a6e9..3dfbe6fbf0b 100644 --- a/pkgs/desktops/gnome-3/3.22/core/gtksourceview/default.nix +++ b/pkgs/desktops/gnome-3/3.22/core/gtksourceview/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { patches = [ ./nix_share_path.patch ]; meta = with stdenv.lib; { - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; maintainers = gnome3.maintainers; }; }