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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
802 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub,
2016-08-13 13:46:43 +03:00
xlibsWrapper, libev, libXi, libXfixes,
2021-01-17 06:51:22 +03:00
pkg-config, asciidoc, libxslt, docbook_xsl }:
2016-08-13 13:46:43 +03:00
2018-12-16 20:48:58 +03:00
stdenv.mkDerivation rec {
pname = "unclutter-xfixes";
2021-08-26 19:02:56 +03:00
version = "1.6";
2016-08-13 13:46:43 +03:00
src = fetchFromGitHub {
owner = "Airblader";
repo = "unclutter-xfixes";
rev = "v${version}";
2021-08-26 19:02:56 +03:00
sha256 = "sha256-suKmaoJq0PBHZc7NzBQ60JGwJkAtWmvzPtTHWOPJEdc=";
2016-08-13 13:46:43 +03:00
};
2021-01-17 06:51:22 +03:00
nativeBuildInputs = [ pkg-config asciidoc libxslt docbook_xsl ];
2018-12-16 20:48:58 +03:00
buildInputs = [ xlibsWrapper libev libXi libXfixes ];
2016-08-13 13:46:43 +03:00
2018-12-16 20:48:58 +03:00
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
2016-08-13 13:46:43 +03:00
2018-12-16 20:48:58 +03:00
installFlags = [ "PREFIX=$(out)" ];
2016-08-13 13:46:43 +03:00
meta = with lib; {
2016-08-13 13:46:43 +03:00
description = "Rewrite of unclutter using the X11 Xfixes extension";
platforms = platforms.unix;
2021-01-15 12:19:50 +03:00
license = lib.licenses.mit;
maintainers = [ maintainers.globin ];
2016-08-13 13:46:43 +03:00
};
}