base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / sw / swaysome / package.nix
blob791eaa2b5fc7f463bcce02a3995941f187cd88e5
1 { lib
2 , rustPlatform
3 , fetchFromGitLab
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "swaysome";
8   version = "2.1.1";
10   src = fetchFromGitLab {
11     owner = "hyask";
12     repo = pname;
13     rev = version;
14     hash = "sha256-HRLMfpnqjDgkOIaH/7DxeYzoZn/0c0KUAmir8XIwesg=";
15   };
17   cargoHash = "sha256-e5B90tIiXxuaRseok69EN4xuoRlCyiTVgEcAqvVg/dM=";
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     mainProgram = "swaysome";
26   };