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

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

26 lines
578 B
Nix
Raw Normal View History

2022-03-06 21:18:23 +01:00
{ lib
, rustPlatform
, fetchFromGitLab
}:
rustPlatform.buildRustPackage rec {
pname = "swaysome";
2022-05-23 10:46:57 +02:00
version = "1.1.5";
2022-03-06 21:18:23 +01:00
src = fetchFromGitLab {
owner = "hyask";
repo = pname;
rev = version;
2022-05-23 10:46:57 +02:00
sha256 = "sha256-E2Oy8ubH4VIpuH4idYNiZJISuYYe+stcUY/atN2JcVw=";
2022-03-06 21:18:23 +01:00
};
2022-05-23 10:46:57 +02:00
cargoSha256 = "sha256-S+GcyEYQ4nnVoPMuglTmFdP5j015UyCXMyyhPHa5m8k=";
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 ];
};
}