switch kodi to using just nixpkgs fork until pr is merged
This commit is contained in:
parent
0d975bda07
commit
742e5e107d
19
flake.lock
19
flake.lock
|
@ -118,7 +118,7 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-unstable": {
|
||||
"nixpkgs-kodi-inputstream-adaptive-fork": {
|
||||
"locked": {
|
||||
"lastModified": 1725474135,
|
||||
"narHash": "sha256-MvoN8RT4WSi4ephArYKzn3Wz98utPUgrKsuGgl2HjCQ=",
|
||||
|
@ -134,6 +134,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1725103162,
|
||||
"narHash": "sha256-Ym04C5+qovuQDYL/rKWSR+WESseQBbNAe5DsXNx5trY=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "12228ff1752d7b7624a54e9c1af4b222b3c1073b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1724224976,
|
||||
|
@ -188,6 +204,7 @@
|
|||
"food-site": "food-site",
|
||||
"home-manager-unstable": "home-manager-unstable",
|
||||
"musicutil": "musicutil",
|
||||
"nixpkgs-kodi-inputstream-adaptive-fork": "nixpkgs-kodi-inputstream-adaptive-fork",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"nur": "nur",
|
||||
"tree-input": "tree-input",
|
||||
|
|
|
@ -11,8 +11,9 @@
|
|||
};
|
||||
|
||||
# nixpkgs Unstable Inputs
|
||||
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
nixpkgs-unstable.url = "github:chaoticryptidz/nixpkgs/patch-4";
|
||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
nixpkgs-kodi-inputstream-adaptive-fork.url = "github:chaoticryptidz/nixpkgs/patch-4";
|
||||
|
||||
home-manager-unstable.url = "github:nix-community/home-manager";
|
||||
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{pkgs, ...}: let
|
||||
kodiPackage = pkgs.kodi-wayland.withPackages (kodiPkgs:
|
||||
{pkgs, inputs, ...}: let
|
||||
|
||||
kodiPackage = inputs.nixpkgs-kodi-inputstream-adaptive-fork.legacyPackages.${pkgs.system}.kodi-wayland.withPackages (kodiPkgs:
|
||||
with kodiPkgs; [
|
||||
pvr-iptvsimple
|
||||
inputstreamhelper
|
||||
|
|
Loading…
Reference in a new issue