2022-04-15 01:41:22 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitLab
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "swaysome";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2.1.1";
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "hyask";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-HRLMfpnqjDgkOIaH/7DxeYzoZn/0c0KUAmir8XIwesg=";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
cargoHash = "sha256-e5B90tIiXxuaRseok69EN4xuoRlCyiTVgEcAqvVg/dM=";
|
2022-04-15 01:41:22 +00: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 ];
|
2023-03-08 16:32:21 +00:00
|
|
|
platforms = platforms.linux;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "swaysome";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
}
|