cargo-codspeed: 2.3.1 -> 2.3.2
[NixPkgs.git] / pkgs / tools / wayland / swaysome / default.nix
blob8c4c2eef5d5225258b820e1290d391c2efa7ded1
1 { lib
2 , rustPlatform
3 , fetchFromGitLab
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "swaysome";
8   version = "2.0.0";
10   src = fetchFromGitLab {
11     owner = "hyask";
12     repo = pname;
13     rev = version;
14     sha256 = "sha256-KmGAp0EPnnM+hPRpUGsbt+NU2v5mcPaRUqo0pqUr1L8=";
15   };
17   cargoHash = "sha256-9sOR99CaTyMQoGMKP2Cag6YNxmgEqNPE/kiJPziqB9U=";
19   meta = with lib; {
20     description = "Helper to make sway behave more like awesomewm";
21     homepage = "https://gitlab.com/hyask/swaysome";
22     license = licenses.mit;
23     maintainers = with maintainers; [ esclear ];
24     platforms = platforms.linux;
25   };