Skip to content

Commit 7bdc9b7

Browse files
authored
oo7: 0.3.3 -> 0.4.0 (#385515)
2 parents 242c2b2 + 3244bcf commit 7bdc9b7

File tree

4 files changed

+95
-1999
lines changed

4 files changed

+95
-1999
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-portal";
14+
inherit (oo7) version src cargoDeps;
15+
16+
sourceRoot = "${finalAttrs.src.name}/portal";
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} (XDG Desktop Portal)";
41+
};
42+
})
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)