nixpkgs/pkgs/tools/misc/unclutter-xfixes/default.nix

31 lines
831 B
Nix
Raw Normal View History

2016-08-13 06:46:43 -04:00
{ stdenv, fetchFromGitHub,
xlibsWrapper, libev, libXi, libXfixes,
pkgconfig, asciidoc, libxslt, docbook_xsl }:
2018-12-16 12:48:58 -05:00
stdenv.mkDerivation rec {
pname = "unclutter-xfixes";
version = "1.5";
2016-08-13 06:46:43 -04:00
src = fetchFromGitHub {
owner = "Airblader";
repo = "unclutter-xfixes";
rev = "v${version}";
sha256 = "148m4wx8v57s3l2wb69y9imb00y8ca2li27hsxibwnl1wrkb7z4b";
2016-08-13 06:46:43 -04:00
};
2018-12-16 12:48:58 -05:00
nativeBuildInputs = [ pkgconfig asciidoc libxslt docbook_xsl ];
buildInputs = [ xlibsWrapper libev libXi libXfixes ];
2016-08-13 06:46:43 -04:00
2018-12-16 12:48:58 -05:00
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
2016-08-13 06:46:43 -04:00
2018-12-16 12:48:58 -05:00
installFlags = [ "PREFIX=$(out)" ];
2016-08-13 06:46:43 -04:00
meta = with stdenv.lib; {
description = "Rewrite of unclutter using the X11 Xfixes extension";
platforms = platforms.unix;
license = stdenv.lib.licenses.mit;
inherit version;
maintainers = [ maintainers.globin ];
2016-08-13 06:46:43 -04:00
};
}