diff --git a/default.nix b/default.nix
index b235447acfa6f62d0eea24a2b2eb88782f7fb123..7f668edc979c8250b22717b8752ca072d5f2636c 100644
--- a/default.nix
+++ b/default.nix
@@ -44,10 +44,10 @@ gpxpy = python3Packages.callPackage ./pkgs/gpxpy {
inherit (sources) gpxpy;
};
gpxsee = libsForQt5.callPackage ./pkgs/gpxsee {
};
gpxsee-maps = callPackage ./pkgs/gpxsee-maps {
};
gpxtools = callPackage ./pkgs/gpxtools {
inherit (sources) gpxtools;
diff --git a/nix/sources.json b/nix/sources.json
index d0a7fc4b68219c69df39adfd26f8d2c2ec54fd59..13794591bf8f2e87039b26b909dd929fde5220d1 100644
--- a/nix/sources.json
+++ b/nix/sources.json
@@ -11,7 +11,7 @@ "type": "tarball",
"url": "https://github.com/BourgeoisLab/GPXLab/archive/68721865f5fd6a5b2414da47a00778d5c342a461.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"branch": "master",
"description": "GPS log file viewer and analyzer with support for GPX, TCX, KML, FIT, IGC, NMEA, SLF, LOC, GeoJSON and OziExplorer files.",
"homepage": "https://www.gpxsee.org",
@@ -23,7 +23,7 @@ "type": "tarball",
"url": "https://github.com/tumic0/GPXSee/archive/6839119794c5002c06b46bf0d1edf4420a388aac.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"branch": "master",
"description": "GPXSee maps",
"homepage": "http://www.gpxsee.org",
diff --git a/pkgs/gpxsee-maps/default.nix b/pkgs/gpxsee-maps/default.nix
index 3c5ee84726afeed530f5d4e7fc137893e7881ef9..e7fb79a712c0ee89134499c08333ee20736d5ff2 100644
--- a/pkgs/gpxsee-maps/default.nix
+++ b/pkgs/gpxsee-maps/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, GPXSee-maps }:
+{ stdenv, gpxsee-maps }:
stdenv.mkDerivation rec {
pname = "gpxsee-maps";
version = stdenv.lib.substring 0 7 src.rev;
installPhase = ''
install -dm755 "$out/share/gpxsee/maps"
@@ -11,7 +11,7 @@ cp -r World "$out/share/gpxsee/maps"
'';
meta = with stdenv.lib; {
homepage = "https://github.com/tumic0/GPXSee-maps";
license = licenses.unlicense;
maintainers = with maintainers; [ sikmir ];
diff --git a/pkgs/gpxsee/default.nix b/pkgs/gpxsee/default.nix
index 3bcbc653aef39e2e24d2ce7302e8b71f3d11b7cd..70ea26edb0507788bd791a5e05842671c204b3a6 100644
--- a/pkgs/gpxsee/default.nix
+++ b/pkgs/gpxsee/default.nix
@@ -1,9 +1,9 @@
-{ mkDerivation, lib, qmake, qtbase, qttools, qttranslations, GPXSee }:
+{ mkDerivation, lib, qmake, qtbase, qttools, qttranslations, gpxsee }:
mkDerivation rec {
pname = "gpxsee";
version = lib.substring 0 7 src.rev;
nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase qttranslations ];
@@ -16,7 +16,7 @@ enableParallelBuilding = true;
meta = with lib; {
homepage = "https://www.gpxsee.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
application/octet-stream
This content has been proxied by September (3851b).