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"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-unstable": {
|
"nixpkgs-kodi-inputstream-adaptive-fork": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1725474135,
|
"lastModified": 1725474135,
|
||||||
"narHash": "sha256-MvoN8RT4WSi4ephArYKzn3Wz98utPUgrKsuGgl2HjCQ=",
|
"narHash": "sha256-MvoN8RT4WSi4ephArYKzn3Wz98utPUgrKsuGgl2HjCQ=",
|
||||||
|
@ -134,6 +134,22 @@
|
||||||
"type": "github"
|
"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": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1724224976,
|
"lastModified": 1724224976,
|
||||||
|
@ -188,6 +204,7 @@
|
||||||
"food-site": "food-site",
|
"food-site": "food-site",
|
||||||
"home-manager-unstable": "home-manager-unstable",
|
"home-manager-unstable": "home-manager-unstable",
|
||||||
"musicutil": "musicutil",
|
"musicutil": "musicutil",
|
||||||
|
"nixpkgs-kodi-inputstream-adaptive-fork": "nixpkgs-kodi-inputstream-adaptive-fork",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"nur": "nur",
|
"nur": "nur",
|
||||||
"tree-input": "tree-input",
|
"tree-input": "tree-input",
|
||||||
|
|
|
@ -11,8 +11,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# nixpkgs Unstable Inputs
|
# nixpkgs Unstable Inputs
|
||||||
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nixpkgs-unstable.url = "github:chaoticryptidz/nixpkgs/patch-4";
|
|
||||||
|
nixpkgs-kodi-inputstream-adaptive-fork.url = "github:chaoticryptidz/nixpkgs/patch-4";
|
||||||
|
|
||||||
home-manager-unstable.url = "github:nix-community/home-manager";
|
home-manager-unstable.url = "github:nix-community/home-manager";
|
||||||
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, ...}: let
|
{pkgs, inputs, ...}: let
|
||||||
kodiPackage = pkgs.kodi-wayland.withPackages (kodiPkgs:
|
|
||||||
|
kodiPackage = inputs.nixpkgs-kodi-inputstream-adaptive-fork.legacyPackages.${pkgs.system}.kodi-wayland.withPackages (kodiPkgs:
|
||||||
with kodiPkgs; [
|
with kodiPkgs; [
|
||||||
pvr-iptvsimple
|
pvr-iptvsimple
|
||||||
inputstreamhelper
|
inputstreamhelper
|
||||||
|
|
Loading…
Reference in a new issue