nixpkgs/pkgs/tools/misc/ckb-next/default.nix

54 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, substituteAll, udev
2021-04-22 22:56:40 +00:00
, pkg-config, qtbase, cmake, zlib, kmod, libXdmcp, qttools, qtx11extras, libdbusmenu }:
2019-08-25 00:13:33 +00:00
mkDerivation rec {
2021-04-22 22:56:40 +00:00
version = "0.4.4";
pname = "ckb-next";
src = fetchFromGitHub {
2018-01-22 13:12:56 +00:00
owner = "ckb-next";
repo = "ckb-next";
rev = "v${version}";
2021-04-22 22:56:40 +00:00
sha256 = "1fgvh2hsrm8vqbqq9g45skhyyrhhka4d8ngmyldkldak1fgmrvb7";
};
buildInputs = [
udev
qtbase
zlib
2021-04-22 22:56:40 +00:00
libXdmcp
qttools
qtx11extras
libdbusmenu
];
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
cmake
];
2019-08-26 13:02:10 +00:00
cmakeFlags = [
"-DINSTALL_DIR_ANIMATIONS=libexec"
2019-04-26 11:41:13 +00:00
"-DUDEV_RULE_DIRECTORY=lib/udev/rules.d"
"-DFORCE_INIT_SYSTEM=systemd"
2020-03-15 02:02:42 +00:00
"-DDISABLE_UPDATER=1"
2019-08-26 13:02:10 +00:00
];
patches = [
./install-dirs.patch
2018-01-09 18:58:25 +00:00
(substituteAll {
name = "ckb-next-modprobe.patch";
src = ./modprobe.patch;
2018-01-09 18:58:25 +00:00
inherit kmod;
})
];
meta = with lib; {
description = "Driver and configuration tool for Corsair keyboards and mice";
homepage = "https://github.com/ckb-next/ckb-next";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ kierdavis ];
};
}