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 ]; + }; +} 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=" +}