tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
foundationdb: cleanup
Weijia Wang
2 years ago
4b8f7098
7cd807e5
+3
-15
2 changed files
expand all
collapse all
unified
split
nixos
modules
services
databases
foundationdb.md
pkgs
development
tools
poetry2nix
poetry2nix
overrides
build-systems.json
+3
-3
nixos/modules/services/databases/foundationdb.md
···
6
7
*Maintainer:* Austin Seipp
8
9
-
*Available version(s):* 5.1.x, 5.2.x, 6.0.x
10
11
FoundationDB (or "FDB") is an open source, distributed, transactional
12
key-value store.
···
17
{file}`configuration.nix`:
18
```
19
services.foundationdb.enable = true;
20
-
services.foundationdb.package = pkgs.foundationdb52; # FoundationDB 5.2.x
21
```
22
23
The {option}`services.foundationdb.package` option is required, and
···
66
```ShellSession
67
a@link> cat fdb-status.py
68
#! /usr/bin/env nix-shell
69
-
#! nix-shell -i python -p python pythonPackages.foundationdb52
70
71
import fdb
72
import json
···
6
7
*Maintainer:* Austin Seipp
8
9
+
*Available version(s):* 7.1.x
10
11
FoundationDB (or "FDB") is an open source, distributed, transactional
12
key-value store.
···
17
{file}`configuration.nix`:
18
```
19
services.foundationdb.enable = true;
20
+
services.foundationdb.package = pkgs.foundationdb71; # FoundationDB 7.1.x
21
```
22
23
The {option}`services.foundationdb.package` option is required, and
···
66
```ShellSession
67
a@link> cat fdb-status.py
68
#! /usr/bin/env nix-shell
69
+
#! nix-shell -i python -p python pythonPackages.foundationdb71
70
71
import fdb
72
import json
-12
pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
···
5761
"fortiosapi": [
5762
"setuptools"
5763
],
5764
-
"foundationdb51": [
5765
-
"setuptools"
5766
-
],
5767
-
"foundationdb52": [
5768
-
"setuptools"
5769
-
],
5770
-
"foundationdb60": [
5771
-
"setuptools"
5772
-
],
5773
-
"foundationdb61": [
5774
-
"setuptools"
5775
-
],
5776
"foundationdb71": [
5777
"setuptools"
5778
],
···
5761
"fortiosapi": [
5762
"setuptools"
5763
],
0
0
0
0
0
0
0
0
0
0
0
0
5764
"foundationdb71": [
5765
"setuptools"
5766
],