summary refs log tree commit diff
path: root/pkgs/applications/window-managers/i3/workstyle.nix
blob: b245139abefe71e1cd010cbf05a9f0f42331cfac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "workstyle";
  version = "0.2.1";

  src = fetchFromGitHub {
    owner = "pierrechevalier83";
    repo = pname;
    rev = "43b0b5bc0a66d40289ff26b8317f50510df0c5f9";
    sha256 = "0f4hwf236823qmqy31fczjb1hf3fvvac3x79jz2l7li55r6fd8hn";
  };

  cargoSha256 = "1hy68wvsxncsy4yx4biigfvwyq18c7yp1g543c6nca15cdzs1c54";

  doCheck = false; # No tests

  meta = with lib; {
    description = "Sway workspaces with style";
    homepage = "https://github.com/pierrechevalier83/workstyle";
    license = licenses.mit;
    maintainers = with maintainers; [ FlorianFranzen ];
  };
}