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

44 lines
924 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, substituteAll, udev
, pkgconfig, qtbase, cmake, zlib, kmod }:
stdenv.mkDerivation rec {
version = "0.3.2";
name = "ckb-next-${version}";
src = fetchFromGitHub {
2018-01-22 13:12:56 +00:00
owner = "ckb-next";
repo = "ckb-next";
rev = "v${version}";
sha256 = "0ri5n7r1vhsgk6s64abvqcdrs5fmlwprw0rxiwfy0j8a9qcic1dr";
};
buildInputs = [
udev
qtbase
zlib
];
nativeBuildInputs = [
pkgconfig
cmake
];
patches = [
./install-dirs.patch
./systemd-service.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 stdenv.lib; {
description = "Driver and configuration tool for Corsair keyboards and mice";
2018-01-22 13:12:56 +00:00
homepage = https://github.com/ckb-next/ckb-next;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ kierdavis ];
};
}