lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / i3 / i3-open-next-ws / package.nix
blobaa4e601596e1fc63558e8dfadf483275837d90d2
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   };