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

30 lines
802 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub,
2016-08-13 06:46:43 -04:00
xlibsWrapper, libev, libXi, libXfixes,
2021-01-16 22:51:22 -05:00
pkg-config, asciidoc, libxslt, docbook_xsl }:
2016-08-13 06:46:43 -04:00
2018-12-16 12:48:58 -05:00
stdenv.mkDerivation rec {
pname = "unclutter-xfixes";
2021-08-26 12:02:56 -04:00
version = "1.6";
2016-08-13 06:46:43 -04:00
src = fetchFromGitHub {
owner = "Airblader";
repo = "unclutter-xfixes";
rev = "v${version}";
2021-08-26 12:02:56 -04:00
sha256 = "sha256-suKmaoJq0PBHZc7NzBQ60JGwJkAtWmvzPtTHWOPJEdc=";
2016-08-13 06:46:43 -04:00
};
2021-01-16 22:51:22 -05:00
nativeBuildInputs = [ pkg-config asciidoc libxslt docbook_xsl ];
2018-12-16 12:48:58 -05:00
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 lib; {
2016-08-13 06:46:43 -04:00
description = "Rewrite of unclutter using the X11 Xfixes extension";
platforms = platforms.unix;
2021-01-15 04:19:50 -05:00
license = lib.licenses.mit;
maintainers = [ maintainers.globin ];
2016-08-13 06:46:43 -04:00
};
}