2017-06-02 17:40:19 +02:00
|
|
|
{ stdenv, fetchFromGitHub, libudev, pkgconfig, qtbase, qmake, zlib }:
|
2017-01-12 19:25:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.2.6";
|
|
|
|
name = "ckb-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ccMSC";
|
|
|
|
repo = "ckb";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "04h50qdzsbi77mj62jghr52i35vxvmhnvsb7pdfdq95ryry8bnwm";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libudev
|
|
|
|
qtbase
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2017-06-02 17:40:19 +02:00
|
|
|
qmake
|
2017-01-12 19:25:14 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./ckb-animations-location.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-06-05 20:08:07 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-01-12 19:25:14 +01:00
|
|
|
install -D --mode 0755 --target-directory $out/bin bin/ckb-daemon bin/ckb
|
|
|
|
install -D --mode 0755 --target-directory $out/libexec/ckb-animations bin/ckb-animations/*
|
2017-06-05 20:08:07 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-01-12 19:25:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Driver and configuration tool for Corsair keyboards and mice";
|
|
|
|
homepage = https://github.com/ccMSC/ckb;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ kierdavis ];
|
|
|
|
};
|
|
|
|
}
|