diff --git a/nix/sources.json b/nix/sources.json

index f9c348203a36bb6a04fedab67f91f4c9fb845dd9..bfbef9dac05071b59b63d0fe92e3985425159a6a 100644

--- a/nix/sources.json

+++ b/nix/sources.json

@@ -170,15 +170,15 @@ },

 "embox": {

     "branch": "master",

     "builtin": false,

     "description": "Modular and configurable OS for embedded applications",

     "homepage": "http://embox.github.io",

     "owner": "embox",

     "repo": "embox",

     "type": "tarball",

     "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"

 },

 "foma": {

@@ -377,15 +377,15 @@ "gpxsee": {

     "branch": "master",

     "builtin": false,

     "changelog": "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes",

     "description": "GPS log file viewer and analyzer",

     "homepage": "https://www.gpxsee.org",

     "owner": "tumic0",

     "repo": "GPXSee",

     "type": "tarball",

     "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"

 },

 "gpxsee-maps": {

@@ -475,15 +475,15 @@ },

 "hfst": {

     "branch": "master",

     "builtin": false,

     "description": "Helsinki Finite-State Technology (library and application suite)",

     "homepage": "https://hfst.github.io",

     "owner": "hfst",

     "repo": "hfst",

     "type": "tarball",

     "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"

 },

 "how-to-use-pvs-studio-free": {

@@ -629,15 +629,15 @@ },

 "mapper": {

     "branch": "master",

     "builtin": false,

     "description": "OpenOrienteering Mapper is a software for creating maps for the orienteering sport",

     "homepage": "https://www.openorienteering.org/apps/mapper/",

     "owner": "OpenOrienteering",

     "repo": "mapper",

     "type": "tarball",

     "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"

 },

 "maprec": {

diff --git a/pkgs/applications/gis/qgis/bin.nix b/pkgs/applications/gis/qgis/bin.nix

index 8b4683ebb021c1768e9ec9b90300f654094e232f..f9b46676be701e44f6eaf65403d7f49a25fb09a0 100644

--- a/pkgs/applications/gis/qgis/bin.nix

+++ b/pkgs/applications/gis/qgis/bin.nix

@@ -5,15 +5,15 @@

stdenv.mkDerivation rec {

pname = "qgis-bin";

version = {

}.${releaseType};

src = fetchurl {

 url = "https://qgis.org/downloads/macos/qgis-macos-${releaseType}.dmg";

 sha256 = {

 }.${releaseType};

 name = "QGIS-macOS-${version}.dmg";

};

@@ -22,7 +22,7 @@ preferLocalBuild = true;

nativeBuildInputs = [ undmg ];

installPhase = ''

 mkdir -p $out/Applications/QGIS.app

diff --git a/pkgs/applications/networking/qutebrowser/bin.nix b/pkgs/applications/networking/qutebrowser/bin.nix

index 151ecbd148f67ab0d9bad4d4d6c7e721abc8b5ed..fa467eeacd88f9fcf8f2461b8f05d3d7028df346 100644

--- a/pkgs/applications/networking/qutebrowser/bin.nix

+++ b/pkgs/applications/networking/qutebrowser/bin.nix

@@ -2,14 +2,14 @@ { stdenv, fetchfromgh, undmg }:

stdenv.mkDerivation rec {

pname = "qutebrowser-bin";

src = fetchfromgh {

 owner = "qutebrowser";

 repo = "qutebrowser";

 version = "v${version}";

 name = "qutebrowser-${version}.dmg";

};

preferLocalBuild = true;

diff --git a/pkgs/data/maps/freizeitkarte-osm/default.nix b/pkgs/data/maps/freizeitkarte-osm/default.nix

index cc53e2f42f920eec39dd15c30b06bd6b834b5607..3030765f2d0cfc792f8a8c1872c64266fa12a29a 100644

--- a/pkgs/data/maps/freizeitkarte-osm/default.nix

+++ b/pkgs/data/maps/freizeitkarte-osm/default.nix

@@ -1,24 +1,18 @@

-{ stdenvNoCC, fetchurl, unzip, country ? "FIN", lang ? "en" }:

-stdenvNoCC.mkDerivation {

+{ lib, fetchurl, unzip, country ? "FIN", lang ? "en" }:

+let

pname = "freizeitkarte-osm";

+in

+fetchurl {

preferLocalBuild = true;

 description = "Freizeitkarte map with DEM (Digital Elevation Model) and hillshading";

 homepage = "https://freizeitkarte-osm.de/";

 license = licenses.free;

diff --git a/pkgs/data/maps/opentopomap/default.nix b/pkgs/data/maps/opentopomap/default.nix

index e7371d4bf1668afd51279aae3226f02b48f0bd44..bb3f0499da7e6b269cbaf4583806353528959b95 100644

--- a/pkgs/data/maps/opentopomap/default.nix

+++ b/pkgs/data/maps/opentopomap/default.nix

@@ -1,24 +1,18 @@

-{ stdenvNoCC, fetchurl, unzip }:

-stdenvNoCC.mkDerivation {

+{ lib, fetchurl, unzip }:

+let

pname = "opentopomap";

+in

+fetchurl {

preferLocalBuild = true;

 description = "OpenTopoMap Garmin Edition";

 homepage = "http://garmin.opentopomap.org/";

 license = licenses.cc-by-nc-sa-40;

diff --git a/pkgs/data/themes/qtpbfimageplugin-styles/default.nix b/pkgs/data/themes/qtpbfimageplugin-styles/default.nix

index 89b8119c91bb1788a9a86c9c4e520b9641188492..d850ebca3720d4208a9cfe5c8b4520dd69942854 100644

--- a/pkgs/data/themes/qtpbfimageplugin-styles/default.nix

+++ b/pkgs/data/themes/qtpbfimageplugin-styles/default.nix

@@ -6,8 +6,6 @@ version = stdenv.lib.substring 0 10 sources.qtpbfimageplugin-styles.date;

src = sources.qtpbfimageplugin-styles;

installPhase = ''

 install -dm755 $out/share/gpxsee/style

 cp -r Mapbox OpenMapTiles Tilezen $out/share/gpxsee/style

diff --git a/pkgs/servers/glauth/default.nix b/pkgs/servers/glauth/default.nix

index c7911f1bebe0a086d696fbf081bd0ca0c1c9cc68..0e38dd31cdc2bdc0d58532634b53e4dccb466ab2 100644

--- a/pkgs/servers/glauth/default.nix

+++ b/pkgs/servers/glauth/default.nix

@@ -10,14 +10,9 @@ vendorSha256 = "18inm0s9mww7c19z9alnvy0g80d3laxh4lwbgzkcc8kf9zg25149";

nativeBuildInputs = [ go-bindata ];

doCheck = false;

diff --git a/pkgs/tools/audio/musig/default.nix b/pkgs/tools/audio/musig/default.nix

index e2d2d0ddb6ca743af0fce649bf07550695d00080..bbfb9a9db2bca395c203bb14fa3820475dbd2751 100644

--- a/pkgs/tools/audio/musig/default.nix

+++ b/pkgs/tools/audio/musig/default.nix

@@ -1,4 +1,4 @@

-{ lib, buildGoModule, pkgconfig, portaudio, sources }:

+{ lib, buildGoModule, pkg-config, portaudio, sources }:

buildGoModule rec {

pname = "musig-unstable";

@@ -8,14 +8,15 @@ src = sources.musig;

vendorSha256 = "0ha1xjdwibm8543b4bx0xrbigngiiakksdc6mnp0mz5y6ai56pg5";

buildInputs = [ portaudio ];

meta = with lib; {

 inherit (sources.musig) description homepage;

diff --git a/pkgs/tools/geo/cgpsmapper/default.nix b/pkgs/tools/geo/cgpsmapper/default.nix

index 7dfe16b51a882041d790e8b3514d29f17cead668..850c92d662da3eb085f790eb44d5d99dd6cbda2d 100644

--- a/pkgs/tools/geo/cgpsmapper/default.nix

+++ b/pkgs/tools/geo/cgpsmapper/default.nix

@@ -13,10 +13,12 @@

sourceRoot = ".";

unpackCmd = "gunzip -c $curSrc > cgpsmapper-static";

dontFixup = true;

installPhase = "install -Dm755 cgpsmapper-static -t $out/bin";

meta = with stdenv.lib; {

 description = "GIS converter into GARMIN compatible format maps";

diff --git a/pkgs/tools/geo/gmaptool/default.nix b/pkgs/tools/geo/gmaptool/default.nix

index 8ce34b157039d74bd9afabde81874ba9d278e9ff..b602e60ce2b613d2022eb9755e9a6865fe542b2c 100644

--- a/pkgs/tools/geo/gmaptool/default.nix

+++ b/pkgs/tools/geo/gmaptool/default.nix

@@ -13,7 +13,6 @@ sha256 = "0wf9ys52slf2hzmfl81d8754alfqiylsk7g5af3lxsiivd5284gy";

 stripRoot = false;

};

dontFixup = true;

installPhase = "install -Dm755 gmt -t $out/bin";

diff --git a/pkgs/tools/geo/sendmap20/default.nix b/pkgs/tools/geo/sendmap20/default.nix

index 6b596a729da581f34d5ca23acbd51bd1807907c7..ab51a1d9767e87019f977d5b98966301e357ce5a 100644

--- a/pkgs/tools/geo/sendmap20/default.nix

+++ b/pkgs/tools/geo/sendmap20/default.nix

@@ -13,10 +13,12 @@

sourceRoot = ".";

unpackCmd = "gunzip -c $curSrc > sendmap20";

dontFixup = true;

installPhase = "install -Dm755 sendmap20 -t $out/bin";

meta = with stdenv.lib; {

 description = "Software for uploading maps to your GPS";

diff --git a/pkgs/tools/misc/supload/default.nix b/pkgs/tools/misc/supload/default.nix

index 66d45f1c1628a145435211c0a50c25a0183db819..c57ef8ff52d71a6e1dcbda12c77036c109001c27 100644

--- a/pkgs/tools/misc/supload/default.nix

+++ b/pkgs/tools/misc/supload/default.nix

@@ -8,8 +8,6 @@ src = sources.supload;

buildInputs = [ curl file ];

prePatch = ''

 substituteInPlace supload.sh \

Proxy Information
Original URL
gemini://git.sikmir.ru/nur-packages/commits/082b9b6ade497906c5daa65cf4197182d2dd839e.patch
Status Code
Success (20)
Meta
application/octet-stream
Capsule Response Time
138.811778 milliseconds
Gemini-to-HTML Time
6.962062 milliseconds

This content has been proxied by September (3851b).