From 56590dd7b38778f7c4c5506c99dafc4228c4c812 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 6 May 2024 10:58:23 -0400 Subject: [PATCH] netbsd: Remove unneded let-bind --- pkgs/os-specific/bsd/netbsd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/bsd/netbsd/default.nix b/pkgs/os-specific/bsd/netbsd/default.nix index fd5e24aa7102..a770c96001a7 100644 --- a/pkgs/os-specific/bsd/netbsd/default.nix +++ b/pkgs/os-specific/bsd/netbsd/default.nix @@ -9,7 +9,7 @@ makeScopeWithSplicing' { f = (self: lib.packagesFromDirectoryRecursive { callPackage = self.callPackage; directory = ./pkgs; - } // (let inherit (self) mkDerivation; in { + } // { fetchNetBSD = path: version: sha256: fetchcvs { cvsRoot = ":pserver:anoncvs@anoncvs.NetBSD.org:/cvsroot"; @@ -133,5 +133,5 @@ makeScopeWithSplicing' { inherit (self) mknod; }; - })); + }); }