Use upstream prowlarr again

This commit is contained in:
Pim Kunis 2024-12-31 15:03:06 +01:00
parent cfd29c7856
commit 262ec125ce
3 changed files with 0 additions and 20 deletions

View file

@ -803,22 +803,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-prowlarr": {
"locked": {
"lastModified": 1734649038,
"narHash": "sha256-0gk/ry0C3d9a8PpyMOiZE0Wl+3EkXqQXb3q6rZlSkAY=",
"owner": "r-ryantm",
"repo": "nixpkgs",
"rev": "5736cebc5c14b9596a6be0cdd586ae4b8a32f036",
"type": "github"
},
"original": {
"owner": "r-ryantm",
"ref": "auto-update/prowlarr",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-radicale": { "nixpkgs-radicale": {
"locked": { "locked": {
"lastModified": 1735496163, "lastModified": 1735496163,
@ -1018,7 +1002,6 @@
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-bazarr": "nixpkgs-bazarr", "nixpkgs-bazarr": "nixpkgs-bazarr",
"nixpkgs-jellyseerr": "nixpkgs-jellyseerr", "nixpkgs-jellyseerr": "nixpkgs-jellyseerr",
"nixpkgs-prowlarr": "nixpkgs-prowlarr",
"nixpkgs-radicale": "nixpkgs-radicale", "nixpkgs-radicale": "nixpkgs-radicale",
"servers": "servers", "servers": "servers",
"treefmt-nix": "treefmt-nix_4" "treefmt-nix": "treefmt-nix_4"

View file

@ -9,7 +9,6 @@
nixpkgs-jellyseerr.url = "github:coonce/nixpkgs?ref=jellyseerr"; nixpkgs-jellyseerr.url = "github:coonce/nixpkgs?ref=jellyseerr";
nixpkgs-bazarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/bazarr"; nixpkgs-bazarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/bazarr";
nixpkgs-radicale.url = "github:erictapen/nixpkgs?ref=radicale"; nixpkgs-radicale.url = "github:erictapen/nixpkgs?ref=radicale";
nixpkgs-prowlarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/prowlarr";
git-hooks = { git-hooks = {
url = "github:cachix/git-hooks.nix"; url = "github:cachix/git-hooks.nix";

View file

@ -8,7 +8,6 @@
nixpkgs-jellyseerr, nixpkgs-jellyseerr,
nixpkgs-bazarr, nixpkgs-bazarr,
nixpkgs-radicale, nixpkgs-radicale,
nixpkgs-prowlarr,
... ...
}: }:
flake-utils.lib.eachDefaultSystem (system: let flake-utils.lib.eachDefaultSystem (system: let
@ -43,7 +42,6 @@ in {
bazarr = nixpkgs-bazarr.legacyPackages.${system}.bazarr; bazarr = nixpkgs-bazarr.legacyPackages.${system}.bazarr;
jellyseerr = nixpkgs-jellyseerr.legacyPackages.${system}.jellyseerr; jellyseerr = nixpkgs-jellyseerr.legacyPackages.${system}.jellyseerr;
radicale = nixpkgs-radicale.legacyPackages.${system}.radicale; radicale = nixpkgs-radicale.legacyPackages.${system}.radicale;
prowlarr = nixpkgs-prowlarr.legacyPackages.${system}.prowlarr;
}) })
]; ];
} }