From 1619e9ff1f3c2fa92d99aa73f6738e92247aa8df Mon Sep 17 00:00:00 2001 From: ZeStig <69384921+zstg@users.noreply.github.com> Date: Wed, 22 Oct 2025 23:39:18 +0530 Subject: [PATCH 1/2] vicinae: init at 0.15.2 --- pkgs/vicinae-bin/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/vicinae-bin/default.nix diff --git a/pkgs/vicinae-bin/default.nix b/pkgs/vicinae-bin/default.nix new file mode 100644 index 000000000..2842759b3 --- /dev/null +++ b/pkgs/vicinae-bin/default.nix @@ -0,0 +1,22 @@ +{ lib, appimageTools, fetchurl, stdenv }: + +let + pname = "vicinae"; + version = "0.15.2"; + src = fetchurl { + url = "https://github.com/vicinaehq/vicinae/releases/download/v${version}/Vicinae-d22b15390-x86_64.AppImage"; + sha256 = "sha256-WRAOFYBKIWWB3FuVNmxpMYyrVrs5Uj+lLhyP56DUfII="; + }; + +in appimageTools.wrapType2 rec { + inherit pname version src; + + meta = with lib; { + description = "Vicinae - a high-performance native launcher for your desktop"; + homepage = "https://github.com/vicinaehq/vicinae"; + license = licenses.gpl3; # Adjust if license differs + platforms = platforms.linux; + mainProgram = "vicinae"; + maintainers = with maintainers; [ zstg ]; + }; +} From 191be8865bbb137d79c33afe31cc9e1204904c2e Mon Sep 17 00:00:00 2001 From: ZeStig <69384921+zstg@users.noreply.github.com> Date: Wed, 22 Oct 2025 23:41:28 +0530 Subject: [PATCH 2/2] Add version.json for vicinae-bin package --- pkgs/vicinae-bin/version.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pkgs/vicinae-bin/version.json diff --git a/pkgs/vicinae-bin/version.json b/pkgs/vicinae-bin/version.json new file mode 100644 index 000000000..7788c393d --- /dev/null +++ b/pkgs/vicinae-bin/version.json @@ -0,0 +1,5 @@ +{ + "version": "v0.14.2", + "rev": "d22b15390a68411c6eb601a1bf655b463f625073", + "hash": "sha256-WRAOFYBKIWWB3FuVNmxpMYyrVrs5Uj+lLhyP56DUfII=" +}