nixpkgs/pkgs/applications/misc/qlandkartegt/garmindev.nix

24 lines
615 B
Nix
Raw Normal View History

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