summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-03-24 21:18:40 +0000
committerGitHub <noreply@github.com>2021-03-24 21:18:40 +0000
commitfa9cd72c09fe2e296481c7788bd4126e5eac6d84 (patch)
tree6905e2fa7022422090df3c788bc80b40438c1968 /pkgs/os-specific
parent0ffaecb6f04404db2c739beb167a5942993cfd87 (diff)
parentb67362d7f70a989a6f4bf6bb106207f53f0c6fe4 (diff)
Merge pull request #117360 from midchildan/feat/fuse/darwin
fuse: use macfuse-stubs instead on Darwin
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/darwin/macfuse/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/os-specific/darwin/macfuse/default.nix b/pkgs/os-specific/darwin/macfuse/default.nix
index a5162b3aed27..7e1b4ed7763c 100644
--- a/pkgs/os-specific/darwin/macfuse/default.nix
+++ b/pkgs/os-specific/darwin/macfuse/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, cpio, xar, undmg, libtapi }:
+{ lib, stdenv, fetchurl, cpio, xar, undmg, libtapi, DiskArbitration }:
stdenv.mkDerivation rec {
pname = "macfuse-stubs";
@@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cpio xar undmg libtapi ];
+ propagatedBuildInputs = [ DiskArbitration ];
postUnpack = ''
xar -xf 'Install macFUSE.pkg'
@@ -40,6 +41,11 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://osxfuse.github.io";
description = "Build time stubs for FUSE on macOS";
+ longDescription = ''
+ macFUSE is required for this package to work on macOS. To install macFUSE,
+ use the installer from the <link xlink:href="https://osxfuse.github.io/">
+ project website</link>.
+ '';
platforms = platforms.darwin;
maintainers = with maintainers; [ midchildan ];