mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
25 lines
683 B
Nix
25 lines
683 B
Nix
{
|
|
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 = "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;
|
|
};
|
|
}
|