blob: 0160574435772c31b9a839f501f440263ae8a106 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
# nativeBuildInputs
libcosmicAppHook,
just,
# buildInputs
openssl,
nix-update-script,
}:
rustPlatform.buildRustPackage {
pname = "forecast";
version = "0-unstable-2025-04-12";
src = fetchFromGitHub {
owner = "cosmic-utils";
repo = "forecast";
rev = "2dc599ff9a4417d511305d910367dd195aa1378a";
hash = "sha256-sD6aGpU1gET+0YPCD8wtxJWEJgWE/xYTWQAaIu2+e/8=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-mqZ2tIZzQWU39SMj8UBnScsGAg4xGhkcm51aXx3UBSk=";
nativeBuildInputs = [
libcosmicAppHook
just
];
dontUseJustBuild = true;
dontUseJustCheck = true;
buildInputs = [ openssl ];
justFlags = [
"--set"
"prefix"
(placeholder "out")
"--set"
"bin-src"
"target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cosmic-ext-forecast"
];
passthru = {
updateScript = nix-update-script {
extraArgs = [
"--version"
"branch=HEAD"
];
};
};
meta = {
description = "Weather app written in rust and libcosmic";
homepage = "https://github.com/cosmic-utils/forecast";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
GaetanLepage
HeitorAugustoLN
];
platforms = lib.platforms.linux;
mainProgram = "cosmic-ext-forecast";
};
}
|