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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
613 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, libusb-compat-0_1 }:
2019-08-08 19:35:32 +01:00
stdenv.mkDerivation rec {
pname = "garmindev";
2019-08-08 19:35:32 +01:00
version = "0.3.4";
src = fetchurl {
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
meta = with lib; {
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" ];
};
}