2021-04-02 22:47:34 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, boost, libevdevplus, libuinputplus, iodash, cxxopts}:
|
2019-10-29 14:43:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ydotool";
|
2021-04-02 22:47:34 +02:00
|
|
|
version = "unstable-2021-01-20";
|
2019-10-29 14:43:07 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ReimuNotMoe";
|
|
|
|
repo = "ydotool";
|
2021-04-02 22:47:34 +02:00
|
|
|
rev = "b1d041f52f7bac364d6539b1251d29c3b77c0f37";
|
|
|
|
sha256 = "1gzdbx6fv0dbcyia3yyzhv93az2gf90aszb9kcj5cnxywfpv9w9g";
|
2019-10-29 14:43:07 +01:00
|
|
|
};
|
|
|
|
|
2021-04-02 22:47:34 +02: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 14:43:07 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt --replace \
|
2021-04-02 22:47:34 +02:00
|
|
|
"PUBLIC cxxopts" \
|
|
|
|
"PUBLIC"
|
2019-10-29 14:43:07 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-10-29 14:43:07 +01:00
|
|
|
buildInputs = [
|
2021-04-02 22:47:34 +02:00
|
|
|
boost libevdevplus libuinputplus iodash cxxopts
|
2019-10-29 14:43:07 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-10-29 14:43:07 +01:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Generic Linux command-line automation tool";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ willibutz ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|