Skip to content

Commit 21d9c45

Browse files
committed
nirius: init at 0.4.3
1 parent 3bf1d99 commit 21d9c45

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

pkgs/by-name/ni/nirius/package.nix

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)