diff --git a/pkgs/data/maps/maptourist/default.nix b/pkgs/data/maps/maptourist/default.nix
index 2ade37df0248644cfd8f7df614422f8f1ff8ae3a..a84a3378557358746694ce8192669e38245edb71 100644
--- a/pkgs/data/maps/maptourist/default.nix
+++ b/pkgs/data/maps/maptourist/default.nix
@@ -2,11 +2,11 @@ { lib, stdenvNoCC, fetchurl, unzip }:
stdenvNoCC.mkDerivation rec {
pname = "maptourist";
src = fetchurl {
url = "https://maptourist.org/osm-garmin/archive/OSM-MapTourist-szfo-RU_${version}.zip";
};
sourceRoot = ".";
diff --git a/pkgs/gemini/gurl/default.nix b/pkgs/gemini/gurl/default.nix
index 0cdeb880b95e57e5c3a68384673bbd47368e27a7..e88d8cf1d56b4df1fe10b48edb2a97d3e5368d6f 100644
--- a/pkgs/gemini/gurl/default.nix
+++ b/pkgs/gemini/gurl/default.nix
@@ -1,22 +1,24 @@
{ lib, stdenv, fetchFromGitHub, zig }:
stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "MasterQ32";
fetchSubmodules = true;
};
nativeBuildInputs = [ zig ];
meta = with lib; {
description = "A curl-like cli application to interact with Gemini sites";
@@ -24,6 +26,5 @@ inherit (src.meta) homepage;
license = licenses.mit;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/misc/aamath/default.nix b/pkgs/misc/aamath/default.nix
index 7e6be9ba862bc26287d131974ef62ca2cc27bfb2..d5edba998d8250788ccf63d825d3315d98000aef 100644
--- a/pkgs/misc/aamath/default.nix
+++ b/pkgs/misc/aamath/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchwebarchive, fetchpatch, readline, ncurses, bison, flex }:
+{ lib, stdenv, fetchwebarchive, fetchpatch, readline, ncurses, bison, flex, installShellFiles }:
stdenv.mkDerivation rec {
pname = "aamath";
@@ -23,13 +23,13 @@ --replace "lex " "flex " \
--replace "-ltermcap" "-lncurses"
'';
buildInputs = [ readline ncurses ];
installPhase = ''
install -Dm755 aamath -t $out/bin
'';
meta = with lib; {
diff --git a/pkgs/osm/phyghtmap/default.nix b/pkgs/osm/phyghtmap/default.nix
index 2fdb12b657c5533257e7a4b5c20cf81d39d9a01a..bca0a063bf65535967da1d610daf69d80e48884b 100644
--- a/pkgs/osm/phyghtmap/default.nix
+++ b/pkgs/osm/phyghtmap/default.nix
@@ -1,4 +1,4 @@
-{ lib, python3Packages, fetchurl }:
+{ lib, python3Packages, fetchurl, installShellFiles }:
python3Packages.buildPythonApplication rec {
pname = "phyghtmap";
@@ -9,9 +9,11 @@ url = "http://katze.tfiu.de/projects/phyghtmap/phyghtmap_${version}.orig.tar.gz";
hash = "sha256-jA6uc/HVdrDQF3NX0Cbu4wMl4SSd7cA/VOvtRRzDsBM=";
};
propagatedBuildInputs = with python3Packages; [ beautifulsoup4 lxml matplotlib numpy ];
meta = with lib; {
description = "Generate OSM contour lines from NASA SRTM data";
application/octet-stream
This content has been proxied by September (3851b).