Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions pkgs/vicinae-bin/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
5 changes: 5 additions & 0 deletions pkgs/vicinae-bin/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "v0.14.2",
"rev": "d22b15390a68411c6eb601a1bf655b463f625073",
"hash": "sha256-WRAOFYBKIWWB3FuVNmxpMYyrVrs5Uj+lLhyP56DUfII="
}
Loading