Add patch of rqbit for higher version

This commit is contained in:
ulic-youthlic 2026-02-01 14:42:00 +08:00
parent dc462255db
commit 3fcebc8a87
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 32 additions and 0 deletions

17
flake.lock generated
View file

@ -809,6 +809,22 @@
"type": "github"
}
},
"nixpkgs-485603": {
"locked": {
"lastModified": 1769860058,
"narHash": "sha256-xiC+Y8ylTYFhY2KaGs1p/bSinsBHQ42nrjsFDn9EajQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b9c50b93fcf500dbd398ddc84829f6751b97fb47",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "refs/pull/485603/head",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1765674936,
@ -1142,6 +1158,7 @@
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_6",
"nixpkgs-485356": "nixpkgs-485356",
"nixpkgs-485603": "nixpkgs-485603",
"nixvim": "nixvim",
"noctalia": "noctalia",
"nur": "nur",

View file

@ -49,12 +49,20 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
# nixpkgs.url = "github:NixOS/nixpkgs/master";
## fix ffmpeg_7-full
nixpkgs-485356 = {
type = "github";
owner = "nixos";
repo = "nixpkgs";
ref = "refs/pull/485356/head";
};
## update rqbit
nixpkgs-485603 = {
type = "github";
owner = "nixos";
repo = "nixpkgs";
ref = "refs/pull/485603/head";
};
lix-module = {
url = "git+https://git.lix.systems/lix-project/nixos-module?ref=release-2.93";

View file

@ -19,6 +19,8 @@ in
./fix-ffmpeg_7-full.nix
./fix-kdePackages.kdenlive.nix
./fix-rqbit.nix
# Nur
./nur.nix
]

View file

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