diff --git a/modules/home-manager/programs/vis.nix b/modules/home-manager/programs/vis.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c73750e83694c8902a7436b5450be0fd30e6781e
--- /dev/null
+++ b/modules/home-manager/programs/vis.nix
@@ -0,0 +1,37 @@
+{ config, lib, pkgs, ... }:
+with lib;
+let
+in
+{
default = pkgs.vis;
defaultText = literalExpression "pkgs.vis";
description = "vis package to install.";
type = types.package;
-- load standard vis module, providing parts of the Lua API
require('vis')
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
-- Your per window configuration options e.g.
vis:command('set number on')
vis:command('set tabwidth 4')
vis:command('set theme zenburn')
end)
+}
diff --git a/pkgs/darwin/cudatext/bin.nix b/pkgs/darwin/cudatext/bin.nix
index a48d2fef98085bc14f22ddbedff1d58f545dff1c..dfcd887beac08cfed7857e8a41622f6351a53f77 100644
--- a/pkgs/darwin/cudatext/bin.nix
+++ b/pkgs/darwin/cudatext/bin.nix
@@ -1,29 +1,29 @@
-{ lib, stdenv, fetchurl, _7zz, unzip, makeWrapper, cudatext }:
+{ lib, stdenv, fetchurl, _7zz, makeWrapper, cudatext }:
stdenv.mkDerivation (finalAttrs: {
pname = "cudatext-bin";
src = {
"aarch64-darwin" = fetchurl {
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-aarch64-${finalAttrs.version}.dmg.zip";
hash = "sha256-w7ypX5tYtAXaEaJgKXqhgH2ORw3yUSg0lOS3RG4lTbY=";
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-aarch64-${finalAttrs.version}.dmg";
hash = "sha256-DU2QtKjPsHBw8hBb2t7cmYvUQ3UodgcW4Hp9kEyEzBI=";
};
"x86_64-darwin" = fetchurl {
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-amd64-${finalAttrs.version}.dmg.zip";
hash = "sha256-9JQx1btljQ4/ybtEoBKQI00KOh9xp+7BEvuMhL2gKcw=";
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-amd64-${finalAttrs.version}.dmg";
hash = "sha256-oGmUcPmnlqKn4mGVhbnFjM1FJ7H3uUg9Z7MKvt2By2Y=";
};
}.${stdenv.hostPlatform.system};
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
mv *.app $out/Applications
makeWrapper $out/{Applications/CudaText.app/Contents/MacOS,bin}/cudatext
diff --git a/pkgs/geospatial/bbox/Cargo.lock b/pkgs/geospatial/bbox/Cargo.lock
index bd5027d5f29267b8c0c65301322e8c524bf8eae5..993338f6ecd3ae9c562960ba68cc6864aa54e5f5 100644
--- a/pkgs/geospatial/bbox/Cargo.lock
+++ b/pkgs/geospatial/bbox/Cargo.lock
@@ -799,7 +799,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bbox-asset-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-files",
"actix-web",
@@ -818,7 +818,7 @@ ]
[[package]]
name = "bbox-core"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-cors",
"actix-session",
@@ -829,6 +829,7 @@ "async-trait",
"clap",
"env_logger 0.9.3",
"figment",
"futures-core",
"fxhash",
"ignore",
@@ -856,7 +857,7 @@ ]
[[package]]
name = "bbox-feature-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-web",
"async-trait",
@@ -881,7 +882,7 @@ ]
[[package]]
name = "bbox-frontend"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-web",
"bbox-core",
@@ -897,7 +898,7 @@ ]
[[package]]
name = "bbox-map-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-web",
"async-process",
@@ -924,7 +925,7 @@ ]
[[package]]
name = "bbox-processes-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-files",
"actix-web",
@@ -969,7 +970,7 @@ ]
[[package]]
name = "bbox-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-service",
"actix-web",
@@ -994,7 +995,7 @@ ]
[[package]]
name = "bbox-tile-server"
-version = "0.5.0-beta1"
+version = "0.5.0"
dependencies = [
"actix-web",
"anyhow",
@@ -1008,7 +1009,6 @@ "chrono",
"clap",
"crossbeam",
"dyn-clone",
"futures",
"futures-util",
"geo-types",
diff --git a/pkgs/geospatial/bbox/default.nix b/pkgs/geospatial/bbox/default.nix
index f3ed34f6a8c0b83edac8fa9fad6ddc368be9bee1..5f30eb1c263a470c94d14fa187a1f3079d0ae0ec 100644
--- a/pkgs/geospatial/bbox/default.nix
+++ b/pkgs/geospatial/bbox/default.nix
@@ -2,13 +2,13 @@ { lib, stdenv, rustPlatform, fetchFromGitHub, darwin, buildPackages }:
rustPlatform.buildRustPackage rec {
pname = "bbox";
src = fetchFromGitHub {
owner = "bbox-services";
repo = "bbox";
rev = "v${version}";
};
cargoLock = {
diff --git a/pkgs/suckless/imscript/default.nix b/pkgs/suckless/imscript/default.nix
index c43324b0e67921af663371cbd9496e846b6e0c45..a8638659b15b008a2f2e7f0da35a176058647128 100644
--- a/pkgs/suckless/imscript/default.nix
+++ b/pkgs/suckless/imscript/default.nix
@@ -13,13 +13,13 @@ }:
stdenv.mkDerivation (finalAttrs: {
pname = "imscript";
src = fetchFromSourcehut {
owner = "~coco";
repo = "imscript";
};
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/suckless/nextvi/default.nix b/pkgs/suckless/nextvi/default.nix
index 5197274b291882d0612565426a1085577ecd8f9c..344f45416851ff21699083cdf3117c5bcf5f29e4 100644
--- a/pkgs/suckless/nextvi/default.nix
+++ b/pkgs/suckless/nextvi/default.nix
@@ -2,13 +2,13 @@ { lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation (finalAttrs: {
pname = "nextvi";
src = fetchFromGitHub {
owner = "kyx0r";
repo = "nextvi";
};
buildPhase = ''
application/octet-stream
This content has been proxied by September (3851b).