prowlarr: 1.28.2.4885 -> 1.29.2.4915
This commit is contained in:
parent
771c32b52c
commit
7ca3ed9293
3 changed files with 22 additions and 1 deletions
17
flake.lock
17
flake.lock
|
@ -786,6 +786,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-prowlarr": {
|
||||
"locked": {
|
||||
"lastModified": 1736414454,
|
||||
"narHash": "sha256-nhzwiWZeUdCqx4bYfBwtJcwBvWhRt1f1vTJGb3fMnrY=",
|
||||
"owner": "r-ryantm",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "b70e60ed75d38ddaab1fabdd1bb99a8d8ff55a63",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "r-ryantm",
|
||||
"ref": "auto-update/prowlarr",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1720386169,
|
||||
|
@ -952,6 +968,7 @@
|
|||
"nixng": "nixng",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"nixpkgs-master": "nixpkgs-master",
|
||||
"nixpkgs-prowlarr": "nixpkgs-prowlarr",
|
||||
"servers": "servers",
|
||||
"treefmt-nix": "treefmt-nix_4"
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
flake-utils.url = "github:numtide/flake-utils";
|
||||
treefmt-nix.url = "github:numtide/treefmt-nix";
|
||||
blog.url = "git+https://git.kun.is/pim/blog";
|
||||
nixpkgs-prowlarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/prowlarr";
|
||||
|
||||
git-hooks = {
|
||||
url = "github:cachix/git-hooks.nix";
|
||||
|
|
|
@ -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;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue