2019-08-21 14:52:07 +02:00
|
|
|
{ stdenv, fetchFromGitHub, mkDerivation
|
2019-12-22 21:43:31 +01:00
|
|
|
, qtbase, qtsvg, qtserialport, qtwebengine, qtmultimedia, qttools
|
2019-12-22 15:47:18 +01:00
|
|
|
, qtconnectivity, qtcharts, libusb
|
2018-09-26 22:18:30 +02:00
|
|
|
, yacc, flex, zlib, qmake, makeDesktopItem, makeWrapper
|
2017-01-21 13:26:30 +01:00
|
|
|
}:
|
2018-09-26 22:18:30 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "goldencheetah";
|
|
|
|
exec = "GoldenCheetah";
|
|
|
|
icon = "goldencheetah";
|
|
|
|
desktopName = "GoldenCheetah";
|
|
|
|
genericName = "GoldenCheetah";
|
|
|
|
comment = "Performance software for cyclists, runners and triathletes";
|
|
|
|
categories = "Application;Utility;";
|
|
|
|
};
|
2019-08-08 13:01:09 +02:00
|
|
|
in mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "golden-cheetah";
|
2019-12-22 15:48:37 +01:00
|
|
|
version = "3.5-RC2X";
|
2019-08-21 01:40:25 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GoldenCheetah";
|
|
|
|
repo = "GoldenCheetah";
|
2019-12-22 15:48:37 +01:00
|
|
|
rev = "V${version}";
|
|
|
|
sha256 = "1d85700gjbcw2badwz225rjdr954ai89900vp8sal04sk79wbr6g";
|
2016-04-17 11:32:02 +02:00
|
|
|
};
|
2019-08-21 01:40:25 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
buildInputs = [
|
2019-12-22 21:43:31 +01:00
|
|
|
qtbase qtsvg qtserialport qtwebengine qtmultimedia qttools zlib
|
2019-12-22 15:47:18 +01:00
|
|
|
qtconnectivity qtcharts libusb
|
2016-04-17 11:32:02 +02:00
|
|
|
];
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ flex makeWrapper qmake yacc ];
|
2019-08-21 01:40:25 +02:00
|
|
|
|
2019-10-30 03:23:29 +01:00
|
|
|
NIX_LDFLAGS = "-lz";
|
2019-08-08 13:01:09 +02:00
|
|
|
|
|
|
|
qtWrapperArgs = [ "--set LD_LIBRARY_PATH ${zlib.out}/lib" ];
|
|
|
|
|
2016-04-21 02:12:49 +02:00
|
|
|
preConfigure = ''
|
2016-04-17 11:32:02 +02:00
|
|
|
cp src/gcconfig.pri.in src/gcconfig.pri
|
|
|
|
cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri
|
2016-08-31 18:37:05 +02:00
|
|
|
echo 'QMAKE_LRELEASE = ${qttools.dev}/bin/lrelease' >> src/gcconfig.pri
|
2019-12-22 15:47:18 +01:00
|
|
|
echo 'LIBUSB_INSTALL = ${libusb}' >> src/gcconfig.pri
|
|
|
|
echo 'LIBUSB_INCLUDE = ${libusb.dev}/include' >> src/gcconfig.pri
|
|
|
|
echo 'LIBUSB_LIBS = -L${libusb}/lib -lusb' >> src/gcconfig.pri
|
2016-04-17 11:32:02 +02:00
|
|
|
sed -i -e '21,23d' qwt/qwtconfig.pri # Removed forced installation to /usr/local
|
2019-12-22 21:43:31 +01:00
|
|
|
|
|
|
|
# Use qtwebengine instead of qtwebkit
|
|
|
|
substituteInPlace src/gcconfig.pri \
|
|
|
|
--replace "#DEFINES += NOWEBKIT" "DEFINES += NOWEBKIT"
|
2016-04-19 12:13:33 +02:00
|
|
|
'';
|
2019-08-21 01:40:25 +02:00
|
|
|
|
2016-04-17 11:32:02 +02:00
|
|
|
installPhase = ''
|
2017-04-10 20:51:45 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2016-04-17 11:32:02 +02:00
|
|
|
mkdir -p $out/bin
|
|
|
|
cp src/GoldenCheetah $out/bin
|
2018-09-26 22:18:30 +02:00
|
|
|
install -Dm644 "${desktopItem}/share/applications/"* -t $out/share/applications/
|
|
|
|
install -Dm644 src/Resources/images/gc.png $out/share/pixmaps/goldencheetah.png
|
2017-04-10 20:51:45 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2016-04-17 11:32:02 +02:00
|
|
|
'';
|
2017-12-05 16:34:39 +01:00
|
|
|
|
2018-09-01 13:49:57 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-04-17 11:32:02 +02:00
|
|
|
description = "Performance software for cyclists, runners and triathletes";
|
2018-09-01 13:49:57 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.ocharles ];
|
|
|
|
license = licenses.gpl3;
|
2016-04-17 11:32:02 +02:00
|
|
|
};
|
|
|
|
}
|