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.
This commit is contained in:
romildo 2016-12-08 10:10:25 -02:00
parent 6f4d4cd93b
commit 1d5ce684a3

View File

@ -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 ];
};
}