From 3cf54f81d3d70ef69ef123c7f25d1e92edfe1f41 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Wed, 6 Dec 2023 20:18:53 +0100 Subject: [PATCH] ccid: add passthru.updateScript --- pkgs/tools/security/ccid/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/ccid/default.nix b/pkgs/tools/security/ccid/default.nix index 5006007035ee..d97e6b378abf 100644 --- a/pkgs/tools/security/ccid/default.nix +++ b/pkgs/tools/security/ccid/default.nix @@ -1,4 +1,12 @@ -{ lib, stdenv, fetchurl, pcsclite, pkg-config, libusb1, perl }: +{ lib +, stdenv +, fetchurl +, pcsclite +, pkg-config +, libusb1 +, perl +, gitUpdater +}: stdenv.mkDerivation rec { pname = "ccid"; @@ -25,6 +33,10 @@ stdenv.mkDerivation rec { # usually getting stripped. stripDebugList = ["pcsc"]; + passthru.updateScript = gitUpdater { + url = "https://salsa.debian.org/rousseau/CCID.git"; + }; + meta = with lib; { description = "ccid drivers for pcsclite"; homepage = "https://ccid.apdu.fr/";