about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/transmission-remote-gtk
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-04-25 03:20:18 +0000
committerJan Malakhovski <oxij@oxij.org>2018-04-25 04:18:46 +0000
commit7438083a4d9d7b60b915d59e118f19398f177fe3 (patch)
treed3b029da9c936317d1eb7432f08ecb5ef32b4820 /pkgs/applications/networking/p2p/transmission-remote-gtk
parentf07f0c6009bb4c2653350fac8db2eee29e09bd1b (diff)
downloadnixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.gz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.bz2
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.lz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.xz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.zst
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.zip
tree-wide: disable `doCheck` and `doInstallCheck` where it fails (the trivial part)
Diffstat (limited to 'pkgs/applications/networking/p2p/transmission-remote-gtk')
-rw-r--r--pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix b/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
index eb88d1c24c20..3ddbe9be4fc6 100644
--- a/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
+++ b/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
@@ -21,13 +21,16 @@ stdenv.mkDerivation rec {
     pkgconfig intltool autoconf-archive
     appstream-glib
   ];
+
   buildInputs = [ gtk3 json-glib curl glib hicolor-icon-theme ];
 
-  meta = with stdenv.lib;
-    { description = "GTK remote control for the Transmission BitTorrent client";
-      homepage = https://github.com/ajf8/transmission-remote-gtk;
-      license = licenses.gpl2;
-      maintainers = [ maintainers.ehmry ];
-      platforms = platforms.linux;
-    };
+  doCheck = false; # fails with style validation error
+
+  meta = with stdenv.lib; {
+    description = "GTK remote control for the Transmission BitTorrent client";
+    homepage = https://github.com/ajf8/transmission-remote-gtk;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.ehmry ];
+    platforms = platforms.linux;
+  };
 }