summary refs log tree commit diff
path: root/pkgs/development/libraries/gtksourceview
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-01-29 20:09:30 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-01-29 20:18:03 -0500
commit750c27f432c0795723984d076d4b8a6dacfa6488 (patch)
treed346d070ca6e4afec11472d49e1910b2f0f9a699 /pkgs/development/libraries/gtksourceview
parentbb509ab0875bfd4a7655c7831dee1c507afa38b0 (diff)
downloadnixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar.gz
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar.bz2
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar.lz
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar.xz
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.tar.zst
nixpkgs-750c27f432c0795723984d076d4b8a6dacfa6488.zip
gtksourceview: cleanup
Diffstat (limited to 'pkgs/development/libraries/gtksourceview')
-rw-r--r--pkgs/development/libraries/gtksourceview/3.x.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gtksourceview/3.x.nix b/pkgs/development/libraries/gtksourceview/3.x.nix
index 3cc59dd67b6..f979be547fe 100644
--- a/pkgs/development/libraries/gtksourceview/3.x.nix
+++ b/pkgs/development/libraries/gtksourceview/3.x.nix
@@ -1,9 +1,7 @@
 { stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk3, pango, vala_0_40
 , libxml2, perl, intltool, gettext, gnome3, gobject-introspection, dbus, xvfb_run, shared-mime-info }:
 
-let
-  checkInputs = [ xvfb_run dbus ];
-in stdenv.mkDerivation rec {
+stdenv.mkDerivation rec {
   name = "gtksourceview-${version}";
   version = "3.24.9";
 
@@ -21,8 +19,9 @@ in stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" ];
 
-  nativeBuildInputs = [ pkgconfig intltool perl gobject-introspection vala_0_40 ]
-    ++ stdenv.lib.optionals doCheck checkInputs;
+  nativeBuildInputs = [ pkgconfig intltool perl gobject-introspection vala_0_40 ];
+
+  checkInputs = [ xvfb_run dbus ];
 
   buildInputs = [ atk cairo glib pango libxml2 gettext ];