pkgs: Synchronize upstream source archives for packages and inputs for flake

This commit is contained in:
ulic-youthlic 2025-06-20 18:22:23 +08:00
parent d390953280
commit 977ded3804
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
8 changed files with 127 additions and 63 deletions

View file

@ -7,7 +7,11 @@
...
}: let
srcs = callPackages ./_sources/generated.nix {};
callPackage = lib.callPackageWith (pkgs // {inherit inputs srcs callPackage rootPath;});
callPackage = lib.callPackageWith (pkgs
// {
inherit inputs srcs callPackage rootPath;
inherit (inputs.nixpkgs-hurl.legacyPackages.${pkgs.system}) hurl;
});
in
{
pinentry-selector = callPackage ./pinentry-selector.nix {};