about summary refs log tree commit diff
path: root/pkgs/by-name/i3/i3-open-next-ws/package.nix
blob: 129f170dd28e32685a83ccf358f54e55f4d853d5 (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
{
  lib,
  rustPlatform,
  fetchCrate,
}:
rustPlatform.buildRustPackage rec {
  pname = "i3-open-next-ws";
  version = "0.1.5";

  src = fetchCrate {
    inherit pname version;
    hash = "sha256-eYHCm8jEv6Ll6/h1kcYHNxWGnVWI41ZB96Jec9oZFsY=";
  };
  cargoHash = "sha256-9U0bYCbkvcZJOCd4jZog4bSJkP1ntmAFjWm7lJDdcuo=";

  meta = {
    description = "A workspace management utility for i3 and sway, that picks the first unused workspace automagically";
    homepage = "https://github.com/JohnDowson/i3-open-next-ws";
    license = lib.licenses.mit;
    mainProgram = "i3-open-next-ws";
    maintainers = with lib.maintainers; [quantenzitrone];
    platforms = lib.platforms.linux;
  };
}