squashfuse: add darwin build

This commit is contained in:
midchildan 2021-03-26 01:36:50 +09:00
parent cbc730d144
commit d1bb69207b
No known key found for this signature in database
GPG key ID: D9A5748BACC6E3C2

View file

@ -8,10 +8,6 @@ stdenv.mkDerivation rec {
pname = "squashfuse";
version = "0.1.103";
# 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 = fetchFromGitHub {
owner = "vasi";
repo = pname;
@ -26,7 +22,7 @@ stdenv.mkDerivation rec {
description = "FUSE filesystem to mount squashfs archives";
homepage = "https://github.com/vasi/squashfuse";
maintainers = [ ];
platforms = platforms.linux;
platforms = platforms.unix;
license = "BSD-2-Clause";
};
}