2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub,
|
2020-04-24 23:36:52 +00:00
|
|
|
xlibsWrapper, libev, libXi, libXfixes,
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config, asciidoc, libxslt, docbook_xsl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "unclutter-xfixes";
|
2021-09-18 10:52:07 +00:00
|
|
|
version = "1.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Airblader";
|
|
|
|
repo = "unclutter-xfixes";
|
|
|
|
rev = "v${version}";
|
2021-09-18 10:52:07 +00:00
|
|
|
sha256 = "sha256-suKmaoJq0PBHZc7NzBQ60JGwJkAtWmvzPtTHWOPJEdc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config asciidoc libxslt docbook_xsl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ xlibsWrapper libev libXi libXfixes ];
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace Makefile --replace 'PKG_CONFIG =' 'PKG_CONFIG ?='
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Rewrite of unclutter using the X11 Xfixes extension";
|
|
|
|
platforms = platforms.unix;
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.globin ];
|
2022-04-27 09:35:20 +00:00
|
|
|
mainProgram = "unclutter";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|