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 3bf1d99 commit 21d9c45Copy full SHA for 21d9c45
pkgs/by-name/ni/nirius/package.nix
@@ -0,0 +1,28 @@
1
+{
2
+ lib,
3
+ fetchFromSourcehut,
4
+ rustPlatform,
5
+}:
6
+
7
+rustPlatform.buildRustPackage rec {
8
+ pname = "nirius";
9
+ version = "0.4.3";
10
11
+ src = fetchFromSourcehut {
12
+ owner = "~tsdh";
13
+ repo = "nirius";
14
+ rev = "nirius-${version}";
15
+ hash = "sha256-JAoKuM+A9AO1erhpWIYKq8lWjRAYjDKqxf1r/Fu2IAM=";
16
+ };
17
18
+ cargoHash = "sha256-btau5IVJ4PWK65eU1F7cmUzF4MOj8FEc4p8KhHg03QQ=";
19
20
+ meta = {
21
+ description = "Utility commands for the niri wayland compositor";
22
+ mainProgram = "nirius";
23
+ homepage = "https://git.sr.ht/~tsdh/nirius";
24
+ license = lib.licenses.gpl3Plus;
25
+ maintainers = with lib.maintainers; [ tylerjl ];
26
+ platforms = lib.platforms.linux;
27
28
+}
0 commit comments