mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
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:
parent
6f4d4cd93b
commit
1d5ce684a3
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user