nixpkgs/pkgs/tools/wayland/ydotool/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, boost, libevdevplus, libuinputplus, iodash, cxxopts}:
2019-10-29 13:43:07 +00:00
stdenv.mkDerivation rec {
pname = "ydotool";
version = "unstable-2021-01-20";
2019-10-29 13:43:07 +00:00
src = fetchFromGitHub {
owner = "ReimuNotMoe";
repo = "ydotool";
rev = "b1d041f52f7bac364d6539b1251d29c3b77c0f37";
sha256 = "1gzdbx6fv0dbcyia3yyzhv93az2gf90aszb9kcj5cnxywfpv9w9g";
2019-10-29 13:43:07 +00:00
};
# upstream decided to use a cpp package manager called cpm.
# we need to disable that because it wants networking, furthermore,
# it does some system folder creating which also needs to be disabled.
# Both changes are to respect the sandbox.
patches = [ ./fixup-cmakelists.patch ];
# cxxopts is a header only library.
# See pull request: https://github.com/ReimuNotMoe/ydotool/pull/105
2019-10-29 13:43:07 +00:00
postPatch = ''
substituteInPlace CMakeLists.txt --replace \
"PUBLIC cxxopts" \
"PUBLIC"
2019-10-29 13:43:07 +00:00
'';
nativeBuildInputs = [ cmake pkg-config ];
2019-10-29 13:43:07 +00:00
buildInputs = [
boost libevdevplus libuinputplus iodash cxxopts
2019-10-29 13:43:07 +00:00
];
meta = with lib; {
2019-10-29 13:43:07 +00:00
inherit (src.meta) homepage;
description = "Generic Linux command-line automation tool";
license = licenses.mit;
maintainers = with maintainers; [ willibutz ];
platforms = with platforms; linux;
};
}