qmapshack: 1.12.3 -> 1.13.0
This commit is contained in:
parent
3062e92657
commit
9a9e1fa462
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchurl, cmake, qtscript, qtwebengine, gdal, proj, routino, quazip }:
|
{ stdenv, fetchurl, fetchpatch, cmake, qtscript, qtwebengine, gdal, proj, routino, quazip }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "qmapshack-${version}";
|
name = "qmapshack-${version}";
|
||||||
version = "1.12.3";
|
version = "1.13.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://bitbucket.org/maproom/qmapshack/downloads/${name}.tar.gz";
|
url = "https://bitbucket.org/maproom/qmapshack/downloads/${name}.tar.gz";
|
||||||
sha256 = "1yp5gw4q4gwiwr9w4dz19am0bhsla9n2l3bdlk98a7f46kxgnkrx";
|
sha256 = "1cv1f718r8vqyk2l6w3alz2aqjvb4msz8705pm9yr5ndi28qyrba";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
@ -15,12 +15,23 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DROUTINO_XML_PATH=${routino}/share/routino"
|
"-DROUTINO_XML_PATH=${routino}/share/routino"
|
||||||
"-DQUAZIP_INCLUDE_DIR=${quazip}/include/quazip"
|
"-DQUAZIP_INCLUDE_DIR=${quazip}/include/quazip5"
|
||||||
"-DLIBQUAZIP_LIBRARY=${quazip}/lib/libquazip.so"
|
"-DLIBQUAZIP_LIBRARY=${quazip}/lib/libquazip.so"
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://bitbucket.org/maproom/qmapshack/raw/d0b1b595578a83fda981ccc1ff24166fa636ba1d/FindPROJ4.patch";
|
||||||
|
sha256 = "1nx4ax233bnnj478cmjpm5c1qqmyn1navlihf10q6hhbanay9n99";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://bitbucket.org/maproom/qmapshack/raw/d0b1b595578a83fda981ccc1ff24166fa636ba1d/FindQuaZip5.patch";
|
||||||
|
sha256 = "0z1b2dz2zlz685mxgn8bmh1fyhxpf6dzd6jvkkjyk2kvnrdxv3b9";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://bitbucket.org/maproom/qmapshack/wiki/Home;
|
homepage = https://bitbucket.org/maproom/qmapshack/wiki/Home;
|
||||||
description = "Plan your next outdoor trip";
|
description = "Plan your next outdoor trip";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user