Use nixpkgs master branch for Bazarr and Radicale

This commit is contained in:
Pim Kunis 2025-01-11 22:55:42 +01:00
parent 8bc6313112
commit 771c32b52c
3 changed files with 2 additions and 45 deletions

View file

@ -770,22 +770,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-bazarr": {
"locked": {
"lastModified": 1735934023,
"narHash": "sha256-i28ekcGQ5UIngZUGlFdLe7/7ppC4lHu3roTuwfEnvnQ=",
"owner": "r-ryantm",
"repo": "nixpkgs",
"rev": "65ac365bbea82b7d4529b9f89fd9e61b67df43ae",
"type": "github"
},
"original": {
"owner": "r-ryantm",
"ref": "auto-update/bazarr",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-master": { "nixpkgs-master": {
"locked": { "locked": {
"lastModified": 1735986103, "lastModified": 1735986103,
@ -802,22 +786,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-radicale": {
"locked": {
"lastModified": 1735496163,
"narHash": "sha256-oqUP98g0eqfzCDA/i88qRIBq4BIyxEk9um7dfNGiw+I=",
"owner": "erictapen",
"repo": "nixpkgs",
"rev": "e14050d0c94dc929543f7e4502fda8539d36536f",
"type": "github"
},
"original": {
"owner": "erictapen",
"ref": "radicale",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1720386169, "lastModified": 1720386169,
@ -983,9 +951,7 @@
"nixhelm": "nixhelm", "nixhelm": "nixhelm",
"nixng": "nixng", "nixng": "nixng",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-bazarr": "nixpkgs-bazarr",
"nixpkgs-master": "nixpkgs-master", "nixpkgs-master": "nixpkgs-master",
"nixpkgs-radicale": "nixpkgs-radicale",
"servers": "servers", "servers": "servers",
"treefmt-nix": "treefmt-nix_4" "treefmt-nix": "treefmt-nix_4"
} }

View file

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

View file

@ -5,8 +5,6 @@
nginx, nginx,
blog, blog,
nixpkgs, nixpkgs,
nixpkgs-bazarr,
nixpkgs-radicale,
nixpkgs-master, nixpkgs-master,
... ...
}: }:
@ -47,14 +45,9 @@ in {
self.nixngModules.deluge self.nixngModules.deluge
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: _prev: { (_final: _prev: {
# From master branch # From master branch
prowlarr = nixpkgs-master.legacyPackages.${system}.prowlarr; inherit (nixpkgs-master.legacyPackages.${system}) prowlarr jellyseerr radicale bazarr;
jellyseerr = nixpkgs-master.legacyPackages.${system}.jellyseerr;
# From forks
bazarr = nixpkgs-bazarr.legacyPackages.${system}.bazarr;
radicale = nixpkgs-radicale.legacyPackages.${system}.radicale;
}) })
]; ];
} }