nixpkgs/pkgs/tools/misc/vial/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.2 KiB
Nix
Raw Normal View History

2021-07-08 12:52:33 +00:00
{ lib, fetchurl, appimageTools }:
let
2023-09-13 07:29:45 +00:00
version = "0.7.1";
2021-07-08 12:52:33 +00:00
pname = "Vial";
src = fetchurl {
url = "https://github.com/vial-kb/vial-gui/releases/download/v${version}/${pname}-v${version}-x86_64.AppImage";
2023-09-13 07:29:45 +00:00
hash = "sha256-pOcrxZ6vbnbdE/H4Kxufxm/ZovaYBXjFpVpKZYV7f3c=";
2021-07-08 12:52:33 +00:00
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };
2021-07-08 12:52:33 +00:00
in
appimageTools.wrapType2 {
inherit pname version src;
2021-07-08 12:52:33 +00:00
extraInstallCommands = ''
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
cp -r ${appimageContents}/usr/share/icons $out/share
mkdir -p $out/etc/udev/rules.d/ # https://get.vial.today/getting-started/linux-udev.html
echo 'KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0666", TAG+="uaccess", TAG+="udev-acl"' > $out/etc/udev/rules.d/92-viia.rules
'';
meta = {
description = "An Open-source GUI and QMK fork for configuring your keyboard in real time";
2021-07-08 12:52:33 +00:00
homepage = "https://get.vial.today";
license = lib.licenses.gpl2Plus;
2024-03-29 11:42:12 +00:00
mainProgram = "Vial";
maintainers = with lib.maintainers; [ kranzes ];
2021-07-08 12:52:33 +00:00
platforms = [ "x86_64-linux" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
2021-07-08 12:52:33 +00:00
};
}