remove platforms.darwin support

This commit is contained in:
Bignaux Ronan 2018-02-06 15:34:51 +01:00
parent 17210fee46
commit e2bf162f04

View File

@ -32,10 +32,14 @@ stdenv.mkDerivation rec {
description = "FUSE filesystem to mount squashfs archives"; description = "FUSE filesystem to mount squashfs archives";
homepage = https://github.com/vasi/squashfuse; homepage = https://github.com/vasi/squashfuse;
maintainers = [ maintainers.genesis ]; maintainers = [ maintainers.genesis ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux;
license = "BSD-2-Clause"; license = "BSD-2-Clause";
}; };
# platforms.darwin should be supported : see PLATFORMS file in src.
# we could use a nix fuseProvider, and let the derivation choose the OS
# specific implementation.
src = fetchurl { src = fetchurl {
url = "https://github.com/vasi/squashfuse/archive/${version}.tar.gz"; url = "https://github.com/vasi/squashfuse/archive/${version}.tar.gz";
sha256 = "08d1j1a73dhhypbk0q20qkrz564zpmvkpk3k3s8xw8gd9nvy2xa2"; sha256 = "08d1j1a73dhhypbk0q20qkrz564zpmvkpk3k3s8xw8gd9nvy2xa2";