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

index c46d344fc493aec0c325b0b0431c3f090bd269c8..ed135ce96f70b579c8a51e0e8922e663bacded06 100644

--- a/nix/sources.json

+++ b/nix/sources.json

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

{

 "geofabrik-estonia": {

     "builtin": false,

     "sha256": "07gy3280arvkvfpm82aqcing1w7av6hq3crf5wxm66ipk2viwmg7",

@@ -107,20 +93,6 @@ "type": "tarball",

     "url": "https://github.com/xinebf/google-translate-for-goldendict/archive/37c2cf96fe5584d766211f72aa0f7002fe334168.tar.gz",

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

 },

 "klogg": {

     "branch": "master",

     "builtin": false,

@@ -135,34 +107,6 @@ "type": "tarball",

     "url": "https://github.com/variar/klogg/archive/9bf68ff2c6f2290723cb2c0ca3b834a6a6290291.tar.gz",

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

 },

 "map-hr": {

     "branch": "master",

     "builtin": false,

@@ -214,20 +158,6 @@ "rev": "d00e29330663d2ca8dc1f4056f92194286250b38",

     "sha256": "0kdhvph2k7qjjqxp84qvdhkm5pii711kkfghpkqwjml1ms0ld96s",

     "type": "tarball",

     "url": "https://github.com/mapbox/mercantile/archive/d00e29330663d2ca8dc1f4056f92194286250b38.tar.gz",

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

 },

 "odict": {

diff --git a/pkgs/development/libraries/hfst/default.nix b/pkgs/development/libraries/hfst/default.nix

index 58846da0020bd61bf8fe1d928c76ca3c00f536bd..3cb41dbbe8e2f72bc8164516475c6ec828975c6c 100644

--- a/pkgs/development/libraries/hfst/default.nix

+++ b/pkgs/development/libraries/hfst/default.nix

@@ -1,15 +1,21 @@

-{ lib, stdenv, autoreconfHook, bison, flex, sources }:

+{ lib, stdenv, fetchFromGitHub, autoreconfHook, bison, flex }:

-stdenv.mkDerivation {

+stdenv.mkDerivation rec {

nativeBuildInputs = [ autoreconfHook bison flex ];

meta = with lib; {

 license = licenses.gpl3;

 maintainers = [ maintainers.sikmir ];

 platforms = platforms.unix;

diff --git a/pkgs/development/libraries/microjson/default.nix b/pkgs/development/libraries/microjson/default.nix

index ea0fd1fb5f31e2cca6e30ecb014bdaabd06f0fbd..9946a95b53837816677579c9dac04a9e621d5235 100644

--- a/pkgs/development/libraries/microjson/default.nix

+++ b/pkgs/development/libraries/microjson/default.nix

@@ -1,10 +1,15 @@

-{ lib, stdenv, cmake, gtest, sources }:

+{ lib, stdenv, fetchFromGitHub, cmake, gtest }:

-stdenv.mkDerivation {

+stdenv.mkDerivation rec {

postPatch = ''

 substituteInPlace tests/CMakeLists.txt \

@@ -18,7 +23,8 @@

doCheck = true;

meta = with lib; {

 license = licenses.mit;

 maintainers = [ maintainers.sikmir ];

 platforms = platforms.unix;

diff --git a/pkgs/dict/lsdreader/default.nix b/pkgs/dict/lsdreader/default.nix

index 20e6e79bea02e0e7019921765a417cf86b61b96e..ae94761aba951078ae6588ac84e09d32343a1cc6 100644

--- a/pkgs/dict/lsdreader/default.nix

+++ b/pkgs/dict/lsdreader/default.nix

@@ -1,15 +1,21 @@

-{ lib, python3Packages, sources }:

+{ lib, python3Packages, fetchFromGitHub }:

-python3Packages.buildPythonApplication {

+python3Packages.buildPythonApplication rec {

doCheck = false;

meta = with lib; {

 license = licenses.free;

 maintainers = [ maintainers.sikmir ];

 platforms = platforms.unix;

diff --git a/pkgs/misc/lazyscraper/default.nix b/pkgs/misc/lazyscraper/default.nix

index 45af4474ea5cbc878d3c3fb85d9b731c6201a57c..562a6b3893d874719e9029884fc7e5fec70bdeb6 100644

--- a/pkgs/misc/lazyscraper/default.nix

+++ b/pkgs/misc/lazyscraper/default.nix

@@ -1,17 +1,23 @@

-{ lib, python3Packages, sources }:

+{ lib, python3Packages, fetchFromGitHub }:

-python3Packages.buildPythonApplication {

+python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [ click lxml requests ];

postInstall = "mv $out/bin/lscraper.py $out/bin/lscraper";

meta = with lib; {

 license = licenses.asl20;

 maintainers = [ maintainers.sikmir ];

 platforms = platforms.unix;

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

index 40900303e6d118c7cf7cb7089c3f9e16db4b0b58..47342083b3e613022cfb0f1e9c29328c833c9e7c 100644

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

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

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

{ lib

+, fetchFromGitHub

, python3Packages

, click

, gnumake

@@ -6,14 +7,18 @@ , curl

, unzip

, gzip

, gdal

-, sources

}:

-python3Packages.buildPythonApplication {

+python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [ fasteners appdirs click setuptools ];

@@ -34,8 +39,17 @@ '';

checkInputs = with python3Packages; [ pytestCheckHook pytest-mock ];

meta = with lib; {

 license = licenses.asl20;

 maintainers = [ maintainers.sikmir ];

 platforms = platforms.unix;

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

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