From 1c0f4cb80963872a9133482fa1c7d2c4e2e719e7 Mon Sep 17 00:00:00 2001 From: Sandro Jäckel Date: Wed, 30 Mar 2022 00:17:03 +0200 Subject: fuse: fix nix-update/nix-prefetch crashing error: attribute 'homepage' missing at ~/src/nixpkgs/pkgs/os-specific/linux/fuse/common.nix:91:21: 90| 91| meta = with lib; { | ^ 92| description = "Library that allows filesystems to be implemented in user space"; --- pkgs/os-specific/linux/fuse/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/os-specific') diff --git a/pkgs/os-specific/linux/fuse/common.nix b/pkgs/os-specific/linux/fuse/common.nix index 5adb1b5355ad..7b9b35614a45 100644 --- a/pkgs/os-specific/linux/fuse/common.nix +++ b/pkgs/os-specific/linux/fuse/common.nix @@ -92,7 +92,7 @@ in stdenv.mkDerivation rec { provides the reference implementation for communicating with the FUSE kernel module. ''; - inherit (src.meta) homepage; + homepage = "https://github.com/libfuse/libfuse"; changelog = "https://github.com/libfuse/libfuse/releases/tag/fuse-${version}"; platforms = platforms.linux; license = with licenses; [ gpl2Only lgpl21Only ]; -- cgit 1.4.1