diff --git a/nix/sources.json b/nix/sources.json
index ac238c4f98af08c9f8b4945bf285f4b2a86adcfd..64e60f456012679b9edb1ce6793a04847282d38f 100644
--- a/nix/sources.json
+++ b/nix/sources.json
@@ -55,20 +55,6 @@ "type": "tarball",
"url": "https://github.com/mhulden/foma/archive/b44022c7d9d347dc7392aabbf72c82e558767675.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"branch": "master",
"builtin": false,
"date": "2020-05-14T16:41:01Z",
"description": "GoldenDict console version and emacs dynamic module",
"homepage": "https://github.com/konstare/gdcv",
"owner": "konstare",
"repo": "gdcv",
"rev": "39fd2667362710f69c13dd596e112b0391e0a57e",
"sha256": "1v9micdr6fml1lbhxndbynghrajix5vgp8qg7b7bdsa2wngzlr16",
"type": "tarball",
"url": "https://github.com/konstare/gdcv/archive/39fd2667362710f69c13dd596e112b0391e0a57e.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"geofabrik-estonia": {
"builtin": false,
"sha256": "07gy3280arvkvfpm82aqcing1w7av6hq3crf5wxm66ipk2viwmg7",
@@ -107,20 +93,6 @@ "type": "tarball",
"url": "https://github.com/wuyongzheng/gimgtools/archive/92d015749e105c5fb8eb704ae503a5c7e51af2bd.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"branch": "master",
"builtin": false,
"date": "2021-01-24T21:39:05Z",
"description": "Python script to interpolate GPX files using linear or spline interpolation",
"homepage": "https://github.com/remisalmon/gpx_interpolate",
"owner": "remisalmon",
"repo": "gpx_interpolate",
"rev": "24236e45e3d8baa0662c329b735b79a17e84c1bd",
"sha256": "0gi8xq7gsmi1a6gbp4d0a0h6ys2jpf0b1fys3ggph5gqf47h9pvc",
"type": "tarball",
"url": "https://github.com/remisalmon/gpx_interpolate/archive/24236e45e3d8baa0662c329b735b79a17e84c1bd.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"gpxelevations": {
"branch": "master",
"builtin": false,
@@ -147,20 +119,6 @@ "rev": "0a2e13756ed1c39f4278b0b3d6cef7f8ac9f6fe7",
"sha256": "1z4wdnd65gkzpbn1gqrsl6vs0gvc9pqgnziw19g6bhap41dvxbv0",
"type": "tarball",
"url": "https://github.com/BourgeoisLab/GPXLab/archive/0a2e13756ed1c39f4278b0b3d6cef7f8ac9f6fe7.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"branch": "master",
"builtin": false,
"date": "2021-02-16T17:32:51Z",
"description": "A c++ library for parsing, browsing, changing and writing of GPX files",
"homepage": "http://irdvo.nl/gpxlib/",
"owner": "irdvo",
"repo": "gpxlib",
"rev": "43df92be29412b7f3b58e63ebea516df9f15b883",
"sha256": "0s8k3gl7w4i26jf4fqv98mlhrm16vzw2yn35rpqmzy87vpc9sbh2",
"type": "tarball",
"url": "https://github.com/irdvo/gpxlib/archive/43df92be29412b7f3b58e63ebea516df9f15b883.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"gpxsee-maps": {
diff --git a/pkgs/development/libraries/gpxlib/default.nix b/pkgs/development/libraries/gpxlib/default.nix
index 0fc8cf9f565e2141958c9b0eae3af3d12b6afdd7..97032a735ba2e7b5d5390423eba53acd3facec66 100644
--- a/pkgs/development/libraries/gpxlib/default.nix
+++ b/pkgs/development/libraries/gpxlib/default.nix
@@ -1,10 +1,15 @@
-{ lib, stdenv, cmake, expat, sources }:
+{ lib, stdenv, fetchFromGitHub, cmake, expat }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
@@ -23,7 +28,8 @@ test/gpxcheck
'';
meta = with lib; {
license = licenses.lgpl3Plus;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
diff --git a/pkgs/dict/gdcv/default.nix b/pkgs/dict/gdcv/default.nix
index 1541a5f75d8ee7198819671da9242401be19106e..03bae930be494fc3a12d2163de2d952c6eff918f 100644
--- a/pkgs/dict/gdcv/default.nix
+++ b/pkgs/dict/gdcv/default.nix
@@ -1,10 +1,15 @@
-{ lib, stdenv, pkg-config, emacs, zlib, sources }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, emacs, zlib }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "gdcv";
nativeBuildInputs = [ pkg-config ];
@@ -18,7 +23,8 @@ install -Dm644 gdcv-elisp.so gdcv.el -t $out/share/emacs/site-lisp
'';
meta = with lib; {
license = licenses.gpl3;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
diff --git a/pkgs/tools/geo/gpx-interpolate/default.nix b/pkgs/tools/geo/gpx-interpolate/default.nix
index a9071372cc4fa8aa0f26d1ce9e6723f53a320d2f..af5c4b1c87740e1b1492a3a21a98d8b77d4cd07d 100644
--- a/pkgs/tools/geo/gpx-interpolate/default.nix
+++ b/pkgs/tools/geo/gpx-interpolate/default.nix
@@ -1,10 +1,15 @@
-{ lib, python3Packages, sources }:
+{ lib, fetchFromGitHub, python3Packages }:
-python3Packages.buildPythonApplication {
+python3Packages.buildPythonApplication rec {
pname = "gpx_interpolate";
propagatedBuildInputs = with python3Packages; [ gpxpy scipy numpy ];
@@ -19,7 +24,8 @@ install -Dm755 gpx_interpolate.py $out/bin/gpx_interpolate
'';
meta = with lib; {
license = licenses.mit;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
application/octet-stream
This content has been proxied by September (3851b).