chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / i3 / i3-open-next-ws / package.nix
bloba28f9a56666c9b29ef75f7689fb9f89fb8f08095
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "i3-open-next-ws";
8   version = "0.1.5";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-eYHCm8jEv6Ll6/h1kcYHNxWGnVWI41ZB96Jec9oZFsY=";
13   };
14   cargoHash = "sha256-9U0bYCbkvcZJOCd4jZog4bSJkP1ntmAFjWm7lJDdcuo=";
16   meta = {
17     description = "Workspace management utility for i3 and sway, that picks the first unused workspace automagically";
18     homepage = "https://github.com/JohnDowson/i3-open-next-ws";
19     license = lib.licenses.mit;
20     mainProgram = "i3-open-next-ws";
21     maintainers = with lib.maintainers; [quantenzitrone];
22     platforms = lib.platforms.linux;
23   };