tangled
alpha
login
or
join now
ptr.pet
/
nsid-tracker
3
fork
atom
tracks lexicons and how many times they appeared on the jetstream
3
fork
atom
overview
issues
pulls
pipelines
build(nix): add cmake
ptr.pet
7 months ago
13e1dd85
7920317e
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+5
-2
1 changed file
expand all
collapse all
unified
split
nix
server.nix
+5
-2
nix/server.nix
···
1
1
{
2
2
-
rustPlatform,
3
3
-
...
2
2
+
rustPlatform,
3
3
+
cmake,
4
4
+
...
4
5
}:
5
6
rustPlatform.buildRustPackage {
6
7
pname = "nsid-tracker-server";
7
8
version = "main";
8
9
9
10
src = ../server;
11
11
+
12
12
+
nativeBuildInputs = [ cmake ];
10
13
11
14
cargoLock = {
12
15
lockFile = ../server/Cargo.lock;