Commit 2af4b551 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

musl: tighten platforms

This will make it possible to check whether we can use pkgsStatic
opportunistically, in places like busybox-sandbox-shell, which
currently decides not to use pkgsStatic based on a hard-coded set of
platforms.
parent 065a7a4e
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -149,7 +149,13 @@ stdenv.mkDerivation rec {
    homepage    = "https://musl.libc.org/";
    changelog   = "https://git.musl-libc.org/cgit/musl/tree/WHATSNEW?h=v${version}";
    license     = licenses.mit;
    platforms   = platforms.linux;
    platforms   = [
      "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux"
      "armv7l-linux" "i686-linux" "x86_64-linux" "m68k-linux"
      "microblaze-linux" "microblazeel-linux" "mipsel-linux"
      "mips64el-linux" "powerpc64-linux" "powerpc64le-linux"
      "riscv64-linux" "s390x-linux"
    ];
    maintainers = with maintainers; [ thoughtpolice dtzWill ];
  };
}