Use Jellyseerr from nixpkgs master branch

This commit is contained in:
Pim Kunis 2025-01-04 11:54:21 +01:00
parent 6106f2f795
commit e7ddf543c8
3 changed files with 1 additions and 20 deletions

View file

@ -786,22 +786,6 @@
"type": "github"
}
},
"nixpkgs-jellyseerr": {
"locked": {
"lastModified": 1735406088,
"narHash": "sha256-Cwah5iXhOJ3cbrPYG5oeSyhQ7F7BsAabHTeezD4elh0=",
"owner": "coonce",
"repo": "nixpkgs",
"rev": "25569750ccc0c692128e667a77585d6d27ff7e57",
"type": "github"
},
"original": {
"owner": "coonce",
"ref": "jellyseerr",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-master": {
"locked": {
"lastModified": 1735986103,
@ -1000,7 +984,6 @@
"nixng": "nixng",
"nixpkgs": "nixpkgs_3",
"nixpkgs-bazarr": "nixpkgs-bazarr",
"nixpkgs-jellyseerr": "nixpkgs-jellyseerr",
"nixpkgs-master": "nixpkgs-master",
"nixpkgs-radicale": "nixpkgs-radicale",
"servers": "servers",

View file

@ -7,7 +7,6 @@
flake-utils.url = "github:numtide/flake-utils";
treefmt-nix.url = "github:numtide/treefmt-nix";
blog.url = "git+https://git.kun.is/pim/blog";
nixpkgs-jellyseerr.url = "github:coonce/nixpkgs?ref=jellyseerr";
nixpkgs-bazarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/bazarr";
nixpkgs-radicale.url = "github:erictapen/nixpkgs?ref=radicale";

View file

@ -5,7 +5,6 @@
nginx,
blog,
nixpkgs,
nixpkgs-jellyseerr,
nixpkgs-bazarr,
nixpkgs-radicale,
nixpkgs-master,
@ -48,10 +47,10 @@ in {
(final: _prev: {
# From master branch
prowlarr = nixpkgs-master.legacyPackages.${system}.prowlarr;
jellyseerr = nixpkgs-master.legacyPackages.${system}.jellyseerr;
# From forks
bazarr = nixpkgs-bazarr.legacyPackages.${system}.bazarr;
jellyseerr = nixpkgs-jellyseerr.legacyPackages.${system}.jellyseerr;
radicale = nixpkgs-radicale.legacyPackages.${system}.radicale;
})
];