From 5d8d521af2d682b4703c49a8e0b327f08b40e15e Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 17 Jun 2024 21:18:16 +0300 Subject: wiringpi: help nix-update find the src position --- pkgs/os-specific/linux/wiringpi/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'pkgs/os-specific') diff --git a/pkgs/os-specific/linux/wiringpi/default.nix b/pkgs/os-specific/linux/wiringpi/default.nix index bc80e2a33543b..b79fae4cbc44a 100644 --- a/pkgs/os-specific/linux/wiringpi/default.nix +++ b/pkgs/os-specific/linux/wiringpi/default.nix @@ -7,14 +7,15 @@ let version = "2.61-1"; - mkSubProject = { subprj # The only mandatory argument - , buildInputs ? [] - , src ? fetchFromGitHub { + srcAll = fetchFromGitHub { owner = "WiringPi"; repo = "WiringPi"; rev = version; sha256 = "sha256-VxAaPhaPXd9xYt663Ju6SLblqiSLizauhhuFqCqbO5M="; - } + }; + mkSubProject = { subprj # The only mandatory argument + , buildInputs ? [] + , src ? srcAll }: stdenv.mkDerivation (finalAttrs: { pname = "wiringpi-${subprj}"; inherit version src; @@ -33,6 +34,9 @@ let ]; }); passthru = { + # Helps nix-update and probably nixpkgs-update find the src of this package + # automatically. + src = srcAll; inherit mkSubProject; wiringPi = mkSubProject { subprj = "wiringPi"; -- cgit 1.4.1