nixpkgs/pkgs/tools/X11/alttab/default.nix

46 lines
914 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, ronn, libpng, uthash
, xorg }:
stdenv.mkDerivation rec {
2020-07-23 21:45:20 +00:00
version = "1.5.0";
pname = "alttab";
src = fetchFromGitHub {
owner = "sagb";
repo = pname;
rev = "v${version}";
2020-07-23 21:45:20 +00:00
sha256 = "026xd1bkg10fj2q1n6xx797xk1grpby25qj1pnw2lp4f3vc19qn6";
};
nativeBuildInputs = [
autoconf
automake
pkgconfig
ronn
];
preConfigure = "./bootstrap.sh";
buildInputs = [
libpng
uthash
xorg.libX11
xorg.libXft
xorg.libXmu
xorg.libXpm
xorg.libXrandr
xorg.libXrender
];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/sagb/alttab";
description = "X11 window switcher designed for minimalistic window managers or standalone X11 session";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = [ maintainers.sgraf ];
};
}