summary refs log tree commit diff
path: root/pkgs/tools/filesystems/squashfuse
diff options
context:
space:
mode:
authorBignaux Ronan <ronan@aimao.org>2018-02-06 15:34:51 +0100
committerBignaux Ronan <ronan@aimao.org>2018-02-06 15:34:51 +0100
commite2bf162f04b81222550d5f0574ef72f32d68125f (patch)
treea8890c31fc0c380535db39d658e96abb182d6846 /pkgs/tools/filesystems/squashfuse
parent17210fee46826873a623ffd6b691da3d897277e3 (diff)
downloadnixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar.gz
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar.bz2
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar.lz
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar.xz
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.tar.zst
nixpkgs-e2bf162f04b81222550d5f0574ef72f32d68125f.zip
remove platforms.darwin support
Diffstat (limited to 'pkgs/tools/filesystems/squashfuse')
-rw-r--r--pkgs/tools/filesystems/squashfuse/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/squashfuse/default.nix b/pkgs/tools/filesystems/squashfuse/default.nix
index 8a8bc5396fc..75b6deccc83 100644
--- a/pkgs/tools/filesystems/squashfuse/default.nix
+++ b/pkgs/tools/filesystems/squashfuse/default.nix
@@ -32,10 +32,14 @@ stdenv.mkDerivation rec {
     description = "FUSE filesystem to mount squashfs archives";
     homepage = https://github.com/vasi/squashfuse;
     maintainers = [ maintainers.genesis ];
-    platforms = platforms.linux ++ platforms.darwin;
+    platforms = platforms.linux;
     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 {
 	    url = "https://github.com/vasi/squashfuse/archive/${version}.tar.gz";
 	    sha256 = "08d1j1a73dhhypbk0q20qkrz564zpmvkpk3k3s8xw8gd9nvy2xa2";