summary refs log tree commit diff
path: root/pkgs/applications/misc/xdgmenumaker
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2016-12-08 10:10:25 -0200
committerromildo <malaquias@gmail.com>2016-12-08 10:10:25 -0200
commit1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26 (patch)
tree7534a5f89770e0f2eaef08a4831d778ff6bb634f /pkgs/applications/misc/xdgmenumaker
parent6f4d4cd93be882727169233d41a70b925b8ef158 (diff)
downloadnixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar.gz
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar.bz2
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar.lz
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar.xz
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.tar.zst
nixlib-1d5ce684a3fb93679f3bd29cbcbd12e358ea0b26.zip
xdgmenumaker: exclude darwin from platforms
Travis reports hash mismatch during the darwin build, although the
hash has been obtained using 'nix-prefetch-url' (on NixOS). Exclude
darwin from platforms until the cause is identified.
Diffstat (limited to 'pkgs/applications/misc/xdgmenumaker')
-rw-r--r--pkgs/applications/misc/xdgmenumaker/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/xdgmenumaker/default.nix b/pkgs/applications/misc/xdgmenumaker/default.nix
index 0d89510644ad..8155c1ca4148 100644
--- a/pkgs/applications/misc/xdgmenumaker/default.nix
+++ b/pkgs/applications/misc/xdgmenumaker/default.nix
@@ -32,7 +32,8 @@ stdenv.mkDerivation rec {
     description = "Command line tool that generates XDG menus for several window managers";
     homepage = https://github.com/gapan/xdgmenumaker;
     license = licenses.gpl2Plus;
-    platforms = platforms.unix;
+    # NOTE: exclude darwin from platforms because Travis reports hash mismatch
+    platforms = with platforms; filter (x: !(elem x darwin)) unix;
     maintainers = [ maintainers.romildo ];
   };
 }