We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fee775 commit 3244bcfCopy full SHA for 3244bcf
pkgs/by-name/oo/oo7-server/package.nix
@@ -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