Skip to content

Instantly share code, notes, and snippets.

@aszlig
Created June 27, 2016 17:52
Show Gist options
  • Save aszlig/3a01c0c23254a68c2be4c6df59e26862 to your computer and use it in GitHub Desktop.
Save aszlig/3a01c0c23254a68c2be4c6df59e26862 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
libgaminggear = stdenv.mkDerivation rec {
name = "libgaminggear-${version}";
version = "0.13.0";
src = fetchurl {
url = "mirror://sourceforge/libgaminggear/${name}.tar.bz2";
sha256 = "08p2z5l0p1vajq4ikchi82xd7bjrijdkpi5s6mpky2sahf72m4gz";
};
outputs = [ "dev" "out" "bin" ];
nativeBuildInputs = [ cmake pkgconfig gettext ];
propagatedBuildInputs = [
gtk2 libcanberra libnotify pcre sqlite xorg.libXdmcp xorg.libpthreadstubs
];
enableParallelBuilding = true;
cmakeFlags = [
"-DINSTALL_CMAKE_MODULESDIR=lib/cmake"
"-DINSTALL_PKGCONFIGDIR=lib/pkgconfig"
"-DINSTALL_LIBDIR=lib"
];
postFixup = ''
moveToOutput bin "$bin"
'';
};
in stdenv.mkDerivation rec {
name = "roccat-tools-${version}";
version = "5.2.0";
src = fetchurl {
url = "mirror://sourceforge/roccat/${name}.tar.bz2";
sha256 = "1m1m0179nnwadsg7yf1izbs1wkrcd37m4x93j2cry98x5i5fx86n";
};
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 pkgconfig gettext ];
buildInputs = [ dbus dbus_glib libgaminggear libgudev lua ];
enableParallelBuilding = true;
cmakeFlags = [
"-DUDEVDIR=\${out}/lib/udev/rules.d"
"-DCMAKE_MODULE_PATH=${libgaminggear.dev}/lib/cmake"
"-DWITH_LUA=${lua.luaversion}"
"-DLIBDIR=lib"
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment