2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, libusb-compat-0_1 }:
|
2019-08-08 19:35:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "garmindev";
|
2019-08-08 19:35:32 +01:00
|
|
|
version = "0.3.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-02-13 15:49:57 +00:00
|
|
|
url = "mirror://sourceforge/qlandkartegt/${pname}-${version}.tar.gz";
|
2019-08-08 19:35:32 +01:00
|
|
|
sha256 = "1mc7rxdn9790pgbvz02xzipxp2dp9h4hfq87xgawa18sp9jqzhw6";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-04-28 04:29:39 +01:00
|
|
|
buildInputs = [ libusb-compat-0_1 ];
|
2019-08-08 19:35:32 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.qlandkarte.org/";
|
2019-08-08 19:35:32 +01:00
|
|
|
description = "Garmin Device Drivers for QlandkarteGT";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ sikmir ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|