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

@ -11,6 +11,8 @@ in
# ./QQ.nix
./helix.nix
./cliphist.nix
./fix-hurl.nix
./fix-handbrake.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{inputs, ...}: final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
inherit (inputs.nixpkgs-handbrake.legacyPackages.${system}) handbrake;
}

View file

@ -0,0 +1,5 @@
{inputs, ...}: final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
inherit (inputs.nixpkgs-hurl.legacyPackages.${system}) hurl;
}