summary refs log tree commit diff
path: root/pkgs/applications/window-managers/i3/workstyle.nix
blob: 3f7c252c2c33bcf8615e89186ae1827138347c0e (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 = "unstable-2021-05-09";

  src = fetchFromGitHub {
    owner = "pierrechevalier83";
    repo = pname;
    rev = "f2023750d802259ab3ee7d7d1762631ec157a0b1";
    sha256 = "04xds691sw4pi2nq8xvdhn0312wwia60gkd8b1bjqy11zrqbivbx";
  };

  cargoSha256 = "0xwv8spr96z4aimjlr15bhwl6i3zqp7jr45d9zr3sbi9d8dbdja2";

  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 ];
  };
}