062210bdff
A recent upgrade of cargo-vendor changed its output slightly, which broke all cargoSha256 hashes in nixpkgs. See https://github.com/NixOS/nixpkgs/issues/60668 for more information. Since then, a few hashes have been fixed in master by hand, but there were a lot still to do, so I did all of the ones left over with some scripts I wrote. The one hash I wasn’t able to update was habitat's, because it’s currently broken and the build doesn’t get far enough to produce a hash anyway.
33 lines
977 B
Nix
33 lines
977 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform,
|
|
xorg, python3, pkgconfig, cairo, libxkbcommon }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wmfocus";
|
|
version = "1.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0jx0h2zyghs3bp4sg8f3vk5rkyprz2dqfqs0v72vmkp3cvgzxbvs";
|
|
};
|
|
|
|
cargoSha256 = "1xmc28ns59jcmnv17102s2084baxqdvi0ibbyqwb108385qnixzf";
|
|
|
|
nativeBuildInputs = [ python3 pkgconfig ];
|
|
buildInputs = [ cairo libxkbcommon xorg.xcbutilkeysyms ];
|
|
|
|
# For now, this is the only available featureset. This is also why the file is
|
|
# in the i3 folder, even though it might be useful for more than just i3
|
|
# users.
|
|
cargoBuildFlags = [ "--features i3" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Visually focus windows by label";
|
|
maintainers = with maintainers; [ synthetica ];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
homepage = https://github.com/svenstaro/wmfocus;
|
|
};
|
|
}
|