From e78900213b259f37363eb2619cc59b6684195cbc Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 26 Mar 2018 15:53:38 -0500 Subject: [PATCH] grub2: extend platforms to include all linux This works (and is needed) on musl-based linux too! --- pkgs/tools/misc/grub/2.0x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix index 78c9056db7a2..96ce38ea9e85 100644 --- a/pkgs/tools/misc/grub/2.0x.nix +++ b/pkgs/tools/misc/grub/2.0x.nix @@ -123,6 +123,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; - platforms = platforms.gnu; + platforms = platforms.gnu ++ platforms.linux; }; })