diff --git a/pkgs/applications/goldencheetah/bin.nix b/pkgs/applications/goldencheetah/bin.nix
index d40e2c0d3d55cbb6e08172202ca06e9b572f9162..e97033b67add990d7e40ee8251d20aaf1109721b 100644
--- a/pkgs/applications/goldencheetah/bin.nix
+++ b/pkgs/applications/goldencheetah/bin.nix
@@ -22,7 +22,7 @@
src = fetchfromgh {
owner = "GoldenCheetah";
repo = "GoldenCheetah";
name = "GoldenCheetah_v${version}_${suffix}";
sha256 =
{
diff --git a/pkgs/applications/misc/klogg/bin.nix b/pkgs/applications/misc/klogg/bin.nix
index 350e33c5eb927986e92e7225b7935eb3746c4d18..9adf86eb4ef1adf60fe0d78a85af019c422c843a 100644
--- a/pkgs/applications/misc/klogg/bin.nix
+++ b/pkgs/applications/misc/klogg/bin.nix
@@ -22,7 +22,7 @@
src = fetchfromgh {
owner = "variar";
repo = "klogg";
name = "klogg-${version}.0.1289-${suffix}";
hash =
{
diff --git a/pkgs/build-support/fetchfromgh/default.nix b/pkgs/build-support/fetchfromgh/default.nix
index cf46059bb950672bb84463c11e9c5e82d14ef410..56520f475216752b2ed60580effc28ef5879107f 100644
--- a/pkgs/build-support/fetchfromgh/default.nix
+++ b/pkgs/build-support/fetchfromgh/default.nix
@@ -3,7 +3,7 @@
{
owner,
repo,
name,
...
}@args:
@@ -13,12 +13,12 @@ in
(
fetchurl (
{
url = "${baseUrl}/releases/download/${version}/${name}";
url = "${baseUrl}/releases/download/${tag}/${name}";
}
// removeAttrs args [
"owner"
"repo"
"version"
"tag"
"name"
]
)
diff --git a/pkgs/darwin/amethyst/default.nix b/pkgs/darwin/amethyst/default.nix
index bdc1a21c2dfa2612488bae9edc6b95f736a99be1..b2a187e8c0391f8fd437cfe5a3e9b03f750d5f06 100644
--- a/pkgs/darwin/amethyst/default.nix
+++ b/pkgs/darwin/amethyst/default.nix
@@ -7,14 +7,14 @@ }:
stdenv.mkDerivation (finalAttrs: {
pname = "Amethyst";
src = fetchfromgh {
owner = "ianyh";
repo = "Amethyst";
name = "Amethyst.zip";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/darktable/bin.nix b/pkgs/darwin/darktable/bin.nix
index 5d76af136f7d049446f6ac1b3f7b3670babb08b1..c29f6555365f5cc9da5838dde8273f2fd377ae2f 100644
--- a/pkgs/darwin/darktable/bin.nix
+++ b/pkgs/darwin/darktable/bin.nix
@@ -8,14 +8,14 @@ }:
stdenv.mkDerivation (finalAttrs: {
pname = "darktable-bin";
src = fetchfromgh {
owner = "darktable-org";
repo = "darktable";
name = "darktable-${finalAttrs.version}-x86_64.dmg";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/macpass/default.nix b/pkgs/darwin/macpass/default.nix
index accd13960d4fb44624553d2c598f4ed886fa86c2..0e5d2ef8b5cffc2df125803d0a21cb9843530117 100644
--- a/pkgs/darwin/macpass/default.nix
+++ b/pkgs/darwin/macpass/default.nix
@@ -12,9 +12,9 @@
src = fetchfromgh {
owner = "MacPass";
repo = "MacPass";
hash = "sha256-LQ073JRbQsDB/nmx63Tllptfdo/8VqoobXPTSShzsXM=";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/macsvg/default.nix b/pkgs/darwin/macsvg/default.nix
index a0fce0b227ccbc6c4f614e3fb0b22c796e9c6206..f539b81181ef732b1fa7613a483f1d2e2548fa27 100644
--- a/pkgs/darwin/macsvg/default.nix
+++ b/pkgs/darwin/macsvg/default.nix
@@ -13,9 +13,9 @@
src = fetchfromgh {
owner = "dsward2";
repo = "macSVG";
hash = "sha256-wlEFUzFQ9fnSjmsIrCDzRvSZmfcK9V+go6pNYJOqN+w=";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/podman-desktop/bin.nix b/pkgs/darwin/podman-desktop/bin.nix
index 6c4198655e752ab1bd57d614397ea716fc6e99ae..50634cf5f0a4c961e0507032bcfb45d6eeb790c2 100644
--- a/pkgs/darwin/podman-desktop/bin.nix
+++ b/pkgs/darwin/podman-desktop/bin.nix
@@ -2,38 +2,25 @@ {
lib,
stdenv,
fetchfromgh,
}:
-let
"aarch64-darwin" = "arm64";
"x86_64-darwin" = "x64";
"aarch64-darwin" = "sha256-3+Lib7gWF03UrIKRcyzHw9aX79aebkCQscAPdKAf6z0=";
"x86_64-darwin" = "sha256-miIw5xsL6GSHC+sX3JNxktfwhY5tkLrLCNdHHUwdtdY=";
-in
stdenv.mkDerivation (finalAttrs: {
pname = "podman-desktop";
src = fetchfromgh {
owner = "containers";
repo = "podman-desktop";
};
installPhase = ''
runHook preInstall
@@ -47,10 +34,7 @@ description = "A graphical tool for developing on containers and Kubernetes";
homepage = "https://podman-desktop.io/";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.asl20;
"aarch64-darwin"
"x86_64-darwin"
maintainers = [ lib.maintainers.sikmir ];
skip.ci = true;
};
diff --git a/pkgs/darwin/qtcreator/bin.nix b/pkgs/darwin/qtcreator/bin.nix
index 96ef53bc1b1231293bdc6e7839eb5b63cc632581..34c763c9de367c2442446dd6ebbcebb3bd65c420 100644
--- a/pkgs/darwin/qtcreator/bin.nix
+++ b/pkgs/darwin/qtcreator/bin.nix
@@ -14,9 +14,9 @@
src = fetchfromgh {
owner = "qt-creator";
repo = "qt-creator";
hash = "sha256-4Z5czgLtU9mrc1HKIkuMWv3O3x3Zul9MJNUHjN7mb0k=";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/qutebrowser/bin.nix b/pkgs/darwin/qutebrowser/bin.nix
index 3b26b6f69bdbc3d33370ce0230a7a2a7cc745020..c681e5cd937b82063a2bde9a5f5bab04ba7bc77c 100644
--- a/pkgs/darwin/qutebrowser/bin.nix
+++ b/pkgs/darwin/qutebrowser/bin.nix
@@ -14,9 +14,9 @@
src = fetchfromgh {
owner = "qutebrowser";
repo = "qutebrowser";
hash = "sha256-+UkClMhU9tqQFeOOap16bDXyi2RRsykV/hZrMhUEfdM=";
};
sourceRoot = ".";
diff --git a/pkgs/darwin/sequel-ace/default.nix b/pkgs/darwin/sequel-ace/default.nix
index b512a4c598df207f23c0dfb523fdb7a6d791d412..6349c103b5361b2bc3ee7d5a7ee03a1b507d29fe 100644
--- a/pkgs/darwin/sequel-ace/default.nix
+++ b/pkgs/darwin/sequel-ace/default.nix
@@ -7,14 +7,14 @@ }:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "sequel-ace";
src = fetchfromgh {
owner = "Sequel-Ace";
repo = "Sequel-Ace";
name = "Sequel-Ace-${lib.head (lib.splitString "-" finalAttrs.version)}.zip";
};
sourceRoot = ".";
diff --git a/pkgs/geospatial/orbisgis/default.nix b/pkgs/geospatial/orbisgis/default.nix
index c376a31b747d4b340d7b0948f19f25d76a534f87..27f91c1ac97c488859e41ddf35820cb227acbdc8 100644
--- a/pkgs/geospatial/orbisgis/default.nix
+++ b/pkgs/geospatial/orbisgis/default.nix
@@ -15,9 +15,9 @@
src = fetchfromgh {
owner = "orbisgis";
repo = "orbisgis";
hash = "sha256-e7SSn+P8rF5eSbl4Z/zp1mHNN2rAi4ZoMvkoy360hGM=";
};
nativeBuildInputs = [
diff --git a/pkgs/linguistics/i18n-editor/default.nix b/pkgs/linguistics/i18n-editor/default.nix
index be245b5739bda8644e438e13a182e9a2c396d67b..b8fa351995ced70d3acba2e5320b86b67e261664 100644
--- a/pkgs/linguistics/i18n-editor/default.nix
+++ b/pkgs/linguistics/i18n-editor/default.nix
@@ -14,9 +14,9 @@
src = fetchfromgh {
owner = "jcbvm";
repo = "i18n-editor";
hash = "sha256-koJdCmcM9mH4D4JSyyi0i/zRCUeI6pYdMmS7SaC56aY=";
};
sourceRoot = ".";
diff --git a/pkgs/misc/qstudio/default.nix b/pkgs/misc/qstudio/default.nix
index 9c1148b5270eb1d2b5da52bf49579d85e0bd96be..9d7965841be075d4aa9fde919fa22b1d5b1aa7b9 100644
--- a/pkgs/misc/qstudio/default.nix
+++ b/pkgs/misc/qstudio/default.nix
@@ -8,14 +8,14 @@ }:
stdenv.mkDerivation (finalAttrs: {
pname = "qstudio";
src = fetchfromgh {
owner = "timeseries";
repo = "qstudio";
name = "qstudio.jar";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/misc/serial-studio/bin.nix b/pkgs/misc/serial-studio/bin.nix
index a2f77a5e05af5785fbc385ca97585d51f35a55fa..1f1c76f3a610261e5dc6470ca2a618edcd9647d5 100644
--- a/pkgs/misc/serial-studio/bin.nix
+++ b/pkgs/misc/serial-studio/bin.nix
@@ -13,9 +13,9 @@
src = fetchfromgh {
owner = "Serial-Studio";
repo = "Serial-Studio";
hash = "sha256-Hl3HoBfDum4APCXpKwQTkrCdTu3UyCnbzHn1omxc9Nc=";
};
sourceRoot = ".";
diff --git a/pkgs/mqtt/mqtt-cli/default.nix b/pkgs/mqtt/mqtt-cli/default.nix
index c1ff57cb8dd3664bc17ec7473829452d39d87015..7cf2e5fadf410994be2d1bf7f56a4bddb95f4cca 100644
--- a/pkgs/mqtt/mqtt-cli/default.nix
+++ b/pkgs/mqtt/mqtt-cli/default.nix
@@ -13,9 +13,9 @@
src = fetchfromgh {
owner = "hivemq";
repo = "mqtt-cli";
hash = "sha256-jn+dhZa4orcZkus30nScgyih7Oa5/XWI33qR/8XAwGQ=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/osm/osmosis/default.nix b/pkgs/osm/osmosis/default.nix
index 82550efeacd2550476804d78f5b915a6c60669fc..2daa3493d3fbe54ce0d4dcae4bee172cdbeeef08 100644
--- a/pkgs/osm/osmosis/default.nix
+++ b/pkgs/osm/osmosis/default.nix
@@ -3,21 +3,22 @@ lib,
stdenv,
fetchfromgh,
jre,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "osmosis";
src = fetchfromgh {
owner = "openstreetmap";
repo = "osmosis";
};
installPhase = ''
mkdir -p $out
@@ -30,6 +31,7 @@
meta = {
description = "Command line Java application for processing OSM data";
homepage = "http://wiki.openstreetmap.org/wiki/Osmosis";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.sikmir ];
platforms = jre.meta.platforms;
diff --git a/pkgs/osm/planetiler/default.nix b/pkgs/osm/planetiler/default.nix
index 93deb463d721e90c047318abc6d09edff40e08d2..58e856fe810bc3009f277a30c0bb0134c4a2c6f5 100644
--- a/pkgs/osm/planetiler/default.nix
+++ b/pkgs/osm/planetiler/default.nix
@@ -9,14 +9,14 @@ }:
stdenv.mkDerivation (finalAttrs: {
pname = "planetiler";
src = fetchfromgh {
owner = "onthegomap";
repo = "planetiler";
name = "planetiler.jar";
};
dontUnpack = true;
application/octet-stream
This content has been proxied by September (3851b).