13caa2c98a
Semi-automatic update. These checks were performed: - built on NixOS - found 4.8.2 with grep in /nix/store/rx2zdc2i670vi31vb9bvlcb748h0b8bj-opencpn-4.8.2 cc "@kragniz"
33 lines
938 B
Nix
33 lines
938 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, cmake, gtk2, wxGTK30, libpulseaudio, curl,
|
|
gettext, glib, portaudio }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opencpn-${version}";
|
|
version = "4.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenCPN";
|
|
repo = "OpenCPN";
|
|
rev = "v${version}";
|
|
sha256 = "0r6a279xhhf4jrmjb2xi5arxb4xd5wvqbs4hyyildlgpr1x7bd09";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cmake gtk2 wxGTK30 libpulseaudio curl gettext
|
|
glib portaudio ];
|
|
|
|
cmakeFlags = [
|
|
"-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include"
|
|
"-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A concise ChartPlotter/Navigator";
|
|
maintainers = [ stdenv.lib.maintainers.kragniz ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = https://opencpn.org/;
|
|
};
|
|
}
|