tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pyprland: add update script
John Titor
2 years ago
0d2a613a
5e8ff032
+3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
py
pyprland
package.nix
+3
pkgs/by-name/py/pyprland/package.nix
···
2
lib,
3
fetchFromGitHub,
4
python3Packages,
0
5
}:
6
7
python3Packages.buildPythonApplication rec {
···
56
"pyprland.plugins.toggle_special"
57
"pyprland.plugins.workspaces_follow_focus"
58
];
0
0
59
60
meta = {
61
mainProgram = "pypr";
···
2
lib,
3
fetchFromGitHub,
4
python3Packages,
5
+
nix-update-script,
6
}:
7
8
python3Packages.buildPythonApplication rec {
···
57
"pyprland.plugins.toggle_special"
58
"pyprland.plugins.workspaces_follow_focus"
59
];
60
+
61
+
passthru.updateScript = nix-update-script {};
62
63
meta = {
64
mainProgram = "pypr";