nixpkgs/pkgs/tools/wayland/swaysome/default.nix
Daniel Albert 424d6ed8aa
swaysome: 1.1.2 -> 1.1.4
Version 1.1.4 of swaysome [was released recently](06eb9d29c2).
This commit updates the swaysome package to this release.
2022-04-26 22:12:22 +02:00

26 lines
578 B
Nix

{ lib
, rustPlatform
, fetchFromGitLab
}:
rustPlatform.buildRustPackage rec {
pname = "swaysome";
version = "1.1.4";
src = fetchFromGitLab {
owner = "hyask";
repo = pname;
rev = version;
sha256 = "sha256-hI6XPND05m67dxo9EwIDhFTyC2UrL4Ll1V/WcBoJymU=";
};
cargoSha256 = "sha256-jG6HZiL2almALyEnQRmbeCTRG11URP3+Bxqyn8hLs7w=";
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 ];
};
}