summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2018-03-06 13:00:34 +0300
committerNikolay Amiantov <ab@fmap.me>2018-03-06 13:07:14 +0300
commit8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556 (patch)
tree674760e81ebe8d4feef67e57c5240c2b847798f6 /pkgs/desktops/gnome-3/core
parenteae4965117a7c58b6a382679a0aee1b821a8c0fa (diff)
downloadnixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar.gz
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar.bz2
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar.lz
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar.xz
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.tar.zst
nixpkgs-8529e0b05f8d0d8b20e4a8a0673db35ac7cfc556.zip
gnome3.gtksourceview: enable parallel building
Diffstat (limited to 'pkgs/desktops/gnome-3/core')
-rw-r--r--pkgs/desktops/gnome-3/core/gtksourceview/default.nix4
1 files changed, 4 insertions, 0 deletions
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;
   };
 }