mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 10:07:55 +00:00
sway-overfocus: init at 0.2.3-fix
This commit is contained in:
parent
9c1bd82694
commit
11a8f8ff59
29
pkgs/by-name/sw/sway-overfocus/package.nix
Normal file
29
pkgs/by-name/sw/sway-overfocus/package.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ fetchFromGitHub, lib, nix-update-script, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "sway-overfocus";
|
||||
version = "0.2.3-fix";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "korreman";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-KHbYlxgrrZdNKJ7R9iVflbbP1c6qohM/NHBSYuzxEt4=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-zp6PSu8P+ZUhrqi5Vxpe+z9zBaSkdVQBMGNP0FVOviQ=";
|
||||
|
||||
# Crate without tests.
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = with lib; {
|
||||
description = ''"Better" focus navigation for sway and i3.'';
|
||||
homepage = "https://github.com/korreman/sway-overfocus";
|
||||
changelog = "https://github.com/korreman/sway-overfocus/releases/tag/${src.rev}";
|
||||
license = licenses.mit;
|
||||
mainProgram = "sway-overfocus";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user