diff options
Diffstat (limited to 'pkgs/os-specific/linux/afuse/default.nix')
-rw-r--r-- | pkgs/os-specific/linux/afuse/default.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/os-specific/linux/afuse/default.nix b/pkgs/os-specific/linux/afuse/default.nix deleted file mode 100644 index df64c0d1f56c..000000000000 --- a/pkgs/os-specific/linux/afuse/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, fuse }: - -stdenv.mkDerivation rec { - pname = "afuse"; - version = "0.5.0"; - - src = fetchFromGitHub { - owner = "pcarrier"; - repo = "afuse"; - rev = "v${version}"; - sha256 = "sha256-KpysJRvDx+12BSl9pIGRqbJAM4W1NbzxMgDycGCr2RM="; - }; - - nativeBuildInputs = [ autoreconfHook pkg-config ]; - buildInputs = [ fuse ]; - - postPatch = lib.optionalString stdenv.isDarwin '' - # Fix the build on macOS with macFUSE installed - substituteInPlace configure.ac --replace \ - 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' \ - "" - ''; - - meta = { - description = "Automounter in userspace"; - homepage = "https://github.com/pcarrier/afuse"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.unix; - }; -} |