prowlarr: 1.28.2.4885 -> 1.29.2.4915

This commit is contained in:
Pim Kunis 2025-01-12 00:06:36 +01:00
parent 771c32b52c
commit 7ca3ed9293
3 changed files with 22 additions and 1 deletions

View file

@ -6,6 +6,7 @@
blog,
nixpkgs,
nixpkgs-master,
nixpkgs-prowlarr,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
@ -47,7 +48,9 @@ in {
nixpkgs.overlays = [
(_final: _prev: {
# From master branch
inherit (nixpkgs-master.legacyPackages.${system}) prowlarr jellyseerr radicale bazarr;
inherit (nixpkgs-master.legacyPackages.${system}) jellyseerr radicale bazarr;
# Other branches
inherit (nixpkgs-prowlarr.legacyPackages.${system}) prowlarr;
})
];
}