9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, cmake, pkg-config, gettext
|
|
, dbus, dbus-glib, libgaminggear, libgudev, lua
|
|
, harfbuzz
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "roccat-tools";
|
|
version = "5.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/roccat/${pname}-${version}.tar.bz2";
|
|
sha256 = "12j02rzbz3iqxprz8cj4kcfcdgnqlva142ci177axqmckcq6crvg";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -re 's,/(etc/xdg),\1,' roccateventhandler/CMakeLists.txt
|
|
|
|
sed -i -e '/roccat_profile_dir(void).*{/,/}/ {
|
|
/return/c \
|
|
return g_build_path("/", g_get_user_data_dir(), "roccat", NULL);
|
|
}' libroccat/roccat_helper.c
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config gettext ];
|
|
buildInputs = [ dbus dbus-glib libgaminggear libgudev lua ];
|
|
|
|
cmakeFlags = [
|
|
"-DUDEVDIR=\${out}/lib/udev/rules.d"
|
|
"-DCMAKE_MODULE_PATH=${libgaminggear.dev}/lib/cmake"
|
|
"-DWITH_LUA=${lua.luaversion}"
|
|
"-DLIBDIR=lib"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
|
|
|
meta = {
|
|
description = "Tools to configure ROCCAT devices";
|
|
homepage = "http://roccat.sourceforge.net/";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|