radicale: 3.3.1 -> 3.3.3

This commit is contained in:
Pim Kunis 2024-12-31 13:00:22 +01:00
parent 79928c85ff
commit cf00f76e61
3 changed files with 20 additions and 0 deletions

View file

@ -803,6 +803,22 @@
"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": 1730741070, "lastModified": 1730741070,
@ -986,6 +1002,7 @@
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-bazarr": "nixpkgs-bazarr", "nixpkgs-bazarr": "nixpkgs-bazarr",
"nixpkgs-jellyseerr": "nixpkgs-jellyseerr", "nixpkgs-jellyseerr": "nixpkgs-jellyseerr",
"nixpkgs-radicale": "nixpkgs-radicale",
"servers": "servers", "servers": "servers",
"treefmt-nix": "treefmt-nix_4" "treefmt-nix": "treefmt-nix_4"
} }

View file

@ -7,6 +7,7 @@
treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.url = "github:numtide/treefmt-nix";
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";
git-hooks = { git-hooks = {
url = "github:cachix/git-hooks.nix"; url = "github:cachix/git-hooks.nix";

View file

@ -7,6 +7,7 @@
nixpkgs, nixpkgs,
nixpkgs-jellyseerr, nixpkgs-jellyseerr,
nixpkgs-bazarr, nixpkgs-bazarr,
nixpkgs-radicale,
... ...
}: }:
flake-utils.lib.eachDefaultSystem (system: let flake-utils.lib.eachDefaultSystem (system: let
@ -40,6 +41,7 @@ in {
(final: _prev: { (final: _prev: {
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;
}) })
]; ];
} }