tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
calendar-cli: add meta.mainProgram
Robert Schütz
2 years ago
8d6af726
4a63197f
+2
-1
2 changed files
expand all
collapse all
unified
split
nixos
tests
radicale.nix
pkgs
tools
networking
calendar-cli
default.nix
+1
-1
nixos/tests/radicale.nix
···
6
port = "5232";
7
filesystem_folder = "/data/radicale";
8
9
-
cli = "${pkgs.calendar-cli}/bin/calendar-cli --caldav-user ${user} --caldav-pass ${password}";
10
in {
11
name = "radicale3";
12
meta.maintainers = with lib.maintainers; [ dotlambda ];
···
6
port = "5232";
7
filesystem_folder = "/data/radicale";
8
9
+
cli = "${lib.getExe pkgs.calendar-cli} --caldav-user ${user} --caldav-pass ${password}";
10
in {
11
name = "radicale3";
12
meta.maintainers = with lib.maintainers; [ dotlambda ];
+1
pkgs/tools/networking/calendar-cli/default.nix
···
36
description = "Simple command-line CalDav client";
37
homepage = "https://github.com/tobixen/calendar-cli";
38
license = licenses.gpl3Plus;
0
39
maintainers = with maintainers; [ dotlambda ];
40
};
41
}
···
36
description = "Simple command-line CalDav client";
37
homepage = "https://github.com/tobixen/calendar-cli";
38
license = licenses.gpl3Plus;
39
+
mainProgram = "calendar-cli";
40
maintainers = with maintainers; [ dotlambda ];
41
};
42
}