Skip to content

Commit 3244bcf

Browse files
committed
oo7-server: init at 0.4.0
Signed-off-by: Sefa Eyeoglu <[email protected]>
1 parent 6fee775 commit 3244bcf

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
cargo,
3+
meson,
4+
ninja,
5+
oo7,
6+
pkg-config,
7+
rustPlatform,
8+
rustc,
9+
stdenv,
10+
systemdLibs,
11+
}:
12+
stdenv.mkDerivation (finalAttrs: {
13+
pname = "oo7-server";
14+
inherit (oo7) version src cargoDeps;
15+
16+
sourceRoot = "${finalAttrs.src.name}/server";
17+
cargoRoot = "../";
18+
19+
nativeBuildInputs = [
20+
pkg-config
21+
meson
22+
ninja
23+
rustPlatform.cargoSetupHook
24+
rustc
25+
cargo
26+
];
27+
28+
buildInputs = [
29+
systemdLibs
30+
];
31+
32+
meta = {
33+
inherit (oo7.meta)
34+
homepage
35+
changelog
36+
license
37+
maintainers
38+
platforms
39+
;
40+
description = "${oo7.meta.description} (Daemon)";
41+
};
42+
})

0 commit comments

Comments
 (0)