nixpkgs/pkgs/tools/wayland/swaysome/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
639 B
Nix
Raw Normal View History

2022-03-06 21:18:23 +01:00
{ lib
, rustPlatform
, fetchFromGitLab
}:
rustPlatform.buildRustPackage rec {
pname = "swaysome";
2023-12-06 13:40:22 +01:00
version = "2.1.0";
2022-03-06 21:18:23 +01:00
src = fetchFromGitLab {
owner = "hyask";
repo = pname;
rev = version;
2023-12-06 13:40:22 +01:00
sha256 = "sha256-U5W/9VL1t1/R4ADPxseBV6CMKx04I4vbp7sFmSqRZXk=";
2022-03-06 21:18:23 +01:00
};
2023-12-06 13:40:22 +01:00
cargoHash = "sha256-QA3EQsYgjwx8QX50yaxiJyAPDlpYYqiqLiXco1kJmw0=";
2022-03-06 21:18:23 +01:00
meta = with lib; {
description = "Helper to make sway behave more like awesomewm";
homepage = "https://gitlab.com/hyask/swaysome";
license = licenses.mit;
maintainers = with maintainers; [ esclear ];
platforms = platforms.linux;
2023-11-27 02:17:53 +01:00
mainProgram = "swaysome";
2022-03-06 21:18:23 +01:00
};
}