mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
39 lines
868 B
Nix
39 lines
868 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, curl
|
|
, qtbase
|
|
, qtlocation
|
|
, maplibre-gl-native
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "mapbox-gl-qml";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rinigus";
|
|
repo = "mapbox-gl-qml";
|
|
rev = version;
|
|
hash = "sha256-EVZbQXV8pI0QTqFDTTynVglsqX1O5oK0Pl5Y/wp+/q0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ curl qtlocation maplibre-gl-native ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/CMakeLists.txt \
|
|
--replace ' ''${QT_INSTALL_QML}' " $out/${qtbase.qtQmlPrefix}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Unofficial Mapbox GL Native bindings for Qt QML";
|
|
homepage = "https://github.com/rinigus/mapbox-gl-qml";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = with maintainers; [ Thra11 dotlambda ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|