wmfocus: 1.0.2 -> 1.1.2

This commit is contained in:
dywedir 2019-03-17 00:53:10 +02:00
parent 44b5166f91
commit bca34cfd6e
No known key found for this signature in database
GPG Key ID: BE743C5DD7703515

View File

@ -1,12 +1,18 @@
{ stdenv, fetchFromGitHub, rustPlatform, { stdenv, fetchFromGitHub, rustPlatform,
xorg, python3, pkgconfig, cairo, libxkbcommon }: xorg, python3, pkgconfig, cairo, libxkbcommon }:
let
rustPlatform.buildRustPackage rec {
pname = "wmfocus"; pname = "wmfocus";
version = "1.0.2"; version = "1.1.2";
in
rustPlatform.buildRustPackage { src = fetchFromGitHub {
inherit pname version; owner = "svenstaro";
name = "${pname}-${version}"; repo = pname;
rev = version;
sha256 = "0jx0h2zyghs3bp4sg8f3vk5rkyprz2dqfqs0v72vmkp3cvgzxbvs";
};
cargoSha256 = "01ifrk6whvckys1kbj65cdwh976yn7dy9vpf4jybnlqripknab43";
nativeBuildInputs = [ python3 pkgconfig ]; nativeBuildInputs = [ python3 pkgconfig ];
buildInputs = [ cairo libxkbcommon xorg.xcbutilkeysyms ]; buildInputs = [ cairo libxkbcommon xorg.xcbutilkeysyms ];
@ -16,20 +22,8 @@ rustPlatform.buildRustPackage {
# users. # users.
cargoBuildFlags = [ "--features i3" ]; cargoBuildFlags = [ "--features i3" ];
src = fetchFromGitHub {
owner = "svenstaro";
repo = pname;
rev = version;
sha256 = "14yxg2jiqx7gng677sbmvv0a0msb9wpvp3qh8h3nkq0vi17ds668";
};
cargoSha256 = "0lwzw8gf970ybblaxxkwn3pxrncxp0hhvykffbzirs7fic4fnvsg";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = '' description = "Visually focus windows by label";
Tool that allows you to rapidly choose a specific window directly
without having to use the mouse or directional keyboard navigation.
'';
maintainers = with maintainers; [ synthetica ]; maintainers = with maintainers; [ synthetica ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.mit; license = licenses.mit;