mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
33 lines
885 B
Nix
33 lines
885 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, xproto, libxcb, xcbutilkeysyms
|
|
, xorg , i3ipc-glib , glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "i3easyfocus-${version}";
|
|
version = "20180622";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cornerman";
|
|
repo = "i3-easyfocus";
|
|
rev = "3631d5af612d58c3d027f59c86b185590bd78ae1";
|
|
sha256 = "1wgknmmm7iz0wxsdh29gmx4arizva9101pzhnmac30bmixf3nzhr";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libxcb xcbutilkeysyms xproto xorg.libX11.dev i3ipc-glib glib.dev ];
|
|
|
|
# Makefile has no rule for 'install'
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp i3-easyfocus $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Focus and select windows in i3";
|
|
homepage = https://github.com/cornerman/i3-easyfocus;
|
|
maintainers = with maintainers; [teto];
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|