mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib, wrapQtAppsHook, fetchFromGitHub, substituteAll, udev, stdenv
|
|
, pkg-config, qtbase, cmake, zlib, kmod, libXdmcp, qttools, qtx11extras, libdbusmenu, gnused
|
|
, withPulseaudio ? stdenv.isLinux, libpulseaudio, quazip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.0";
|
|
pname = "ckb-next";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ckb-next";
|
|
repo = "ckb-next";
|
|
rev = "v${version}";
|
|
hash = "sha256-G0cvET3wMIi4FlBmaTkdTyYtcdVGzK4X0C2HYZr43eg=";
|
|
};
|
|
|
|
buildInputs = [
|
|
udev
|
|
qtbase
|
|
zlib
|
|
libXdmcp
|
|
qttools
|
|
qtx11extras
|
|
libdbusmenu
|
|
quazip
|
|
] ++ lib.optional withPulseaudio libpulseaudio;
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DINSTALL_DIR_ANIMATIONS=libexec"
|
|
"-DUDEV_RULE_DIRECTORY=lib/udev/rules.d"
|
|
"-DFORCE_INIT_SYSTEM=systemd"
|
|
"-DDISABLE_UPDATER=1"
|
|
];
|
|
|
|
patches = [
|
|
./install-dirs.patch
|
|
(substituteAll {
|
|
name = "ckb-next-modprobe.patch";
|
|
src = ./modprobe.patch;
|
|
inherit kmod;
|
|
})
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace "$out/lib/udev/rules.d/99-ckb-next-daemon.rules" \
|
|
--replace-fail "/usr/bin/env sed" "${lib.getExe gnused}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Driver and configuration tool for Corsair keyboards and mice";
|
|
homepage = "https://github.com/ckb-next/ckb-next";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
mainProgram = "ckb-next";
|
|
maintainers = [ ];
|
|
};
|
|
}
|