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";
2024-03-05 13:19:43 +01:00
version = "2.1.1";
2022-03-06 21:18:23 +01:00
src = fetchFromGitLab {
owner = "hyask";
repo = pname;
rev = version;
2024-03-05 13:19:43 +01:00
sha256 = "sha256-HRLMfpnqjDgkOIaH/7DxeYzoZn/0c0KUAmir8XIwesg=";
2022-03-06 21:18:23 +01:00
};
2024-03-05 13:19:43 +01:00
cargoHash = "sha256-e5B90tIiXxuaRseok69EN4xuoRlCyiTVgEcAqvVg/dM=";
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
};
}