diff options
author | Rory& <root@rory.gay> | 2024-11-03 03:27:59 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-11-03 03:27:59 +0100 |
commit | 425545be01ea018606664f26ba6b15cc42ebfa82 (patch) | |
tree | e2be76fae5affa712203465266a6e5159e234e4a | |
parent | Disable matrixunittests containers until i can fix them (diff) | |
download | Rory-Open-Architecture-425545be01ea018606664f26ba6b15cc42ebfa82.tar.xz |
Keydb from older nixpkgs
-rw-r--r-- | flake.lock | 17 | ||||
-rwxr-xr-x | flake.nix | 2 |
2 files changed, 19 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock index 33ea0a6..4fdcec3 100644 --- a/flake.lock +++ b/flake.lock @@ -605,6 +605,22 @@ "type": "github" } }, + "nixpkgs-keydb": { + "locked": { + "lastModified": 1727211877, + "narHash": "sha256-zy/ar3GpnzuGRCwrr6zV/QicoZcqd2kNNhkRDECfStU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "e0464e47880a69896f0fb1810f00e0de469f770a", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "e0464e47880a69896f0fb1810f00e0de469f770a", + "type": "github" + } + }, "nixpkgs-master": { "locked": { "lastModified": 1730149251, @@ -795,6 +811,7 @@ "nixpkgs": "nixpkgs_7", "nixpkgs-Draupnir": "nixpkgs-Draupnir", "nixpkgs-RoryNix": "nixpkgs-RoryNix", + "nixpkgs-keydb": "nixpkgs-keydb", "nixpkgs-master": "nixpkgs-master", "sops-nix": "sops-nix" } diff --git a/flake.nix b/flake.nix index eeaadba..1940892 100755 --- a/flake.nix +++ b/flake.nix @@ -23,6 +23,7 @@ # Draupnir module/package nixpkgs-Draupnir.url = "github:TheArcaneBrony/nixpkgs/master"; + nixpkgs-keydb.url = "github:nixos/nixpkgs?rev=e0464e47880a69896f0fb1810f00e0de469f770a"; #MatrixContentFilter.url = "git+file:/home/Rory/git/matrix/MatrixContentFilter?submodules=1"; # Base modules @@ -131,6 +132,7 @@ (final: prev: { matrix-synapse-unwrapped = inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.matrix-synapse-unwrapped; draupnir = inputs.nixpkgs-Draupnir.legacyPackages.${pkgs.stdenv.hostPlatform.system}.draupnir; + keydb = inputs.nixpkgs-keydb.legacyPackages.${pkgs.stdenv.hostPlatform.system}.keydb; }) ]; } |