2017-09-26 16:11:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, bison, flex, bluez, pkgconfig, gtk2 }:
|
2015-08-26 16:04:17 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-26 16:11:44 +01:00
|
|
|
name = "cwiid-${version}-git";
|
|
|
|
version = "2010-02-21";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "abstrakraft";
|
|
|
|
repo = "cwiid";
|
|
|
|
rev = "fadf11e89b579bcc0336a0692ac15c93785f3f82";
|
|
|
|
sha256 = "0qdb0x757k76nfj32xc2nrrdqd9jlwgg63vfn02l2iznnzahxp0h";
|
2016-02-09 01:22:40 +00:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-09 01:22:40 +00:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--without-python" ];
|
2016-02-09 01:22:40 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
sed -i -e '/$(LDCONFIG)/d' common/include/lib.mak.in
|
|
|
|
'';
|
|
|
|
|
2017-09-26 16:11:44 +01:00
|
|
|
buildInputs = [ bison flex bluez gtk2 ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-02-09 01:22:40 +00:00
|
|
|
|
2019-01-04 19:33:50 +00:00
|
|
|
NIX_LDFLAGS = [
|
|
|
|
"-lbluetooth"
|
|
|
|
];
|
|
|
|
|
2016-02-09 01:22:40 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Some programs (for example, cabal-install) have problems with the double 0
|
|
|
|
sed -i -e "s/0.6.00/0.6.0/" $out/lib/pkgconfig/cwiid.pc
|
|
|
|
'';
|
|
|
|
|
2017-09-26 16:11:44 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-09 01:22:40 +00:00
|
|
|
description = "Linux Nintendo Wiimote interface";
|
2017-09-26 16:11:44 +01:00
|
|
|
homepage = http://cwiid.org;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ bennofs ];
|
|
|
|
platforms = platforms.linux;
|
2016-02-09 01:22:40 +00:00
|
|
|
};
|
2015-08-26 16:04:17 +01:00
|
|
|
}
|