From 8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 6 Mar 2018 13:00:34 +0300 Subject: [PATCH] gnome3.gtksourceview: enable parallel building --- pkgs/desktops/gnome-3/core/gtksourceview/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/desktops/gnome-3/core/gtksourceview/default.nix b/pkgs/desktops/gnome-3/core/gtksourceview/default.nix index b3948942c12..a870b16f925 100644 --- a/pkgs/desktops/gnome-3/core/gtksourceview/default.nix +++ b/pkgs/desktops/gnome-3/core/gtksourceview/default.nix @@ -36,6 +36,8 @@ in stdenv.mkDerivation rec { patches = [ ./nix_share_path.patch ]; + enableParallelBuilding = true; + doCheck = stdenv.isLinux; checkPhase = '' export NO_AT_BRIDGE=1 @@ -45,7 +47,9 @@ in stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GtkSourceView; platforms = with platforms; linux ++ darwin; + license = licenses.lgpl21; maintainers = gnome3.maintainers; }; }