Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
buildFHSEnv,
|
|
dbus,
|
|
fetchzip,
|
|
fontconfig,
|
|
freetype,
|
|
glib,
|
|
lib,
|
|
libGL,
|
|
xkeyboard_config,
|
|
xorg,
|
|
zlib,
|
|
}:
|
|
|
|
let
|
|
pname = "kingstvis";
|
|
version = "3.6.1";
|
|
src = fetchzip {
|
|
url = "http://res.kingst.site/kfs/KingstVIS_v${version}.tar.gz";
|
|
hash = "sha256-eZJ3RZWdmNx/El3Hh5kUf44pIwdvwOEkRysYBgUkS18=";
|
|
};
|
|
in
|
|
|
|
buildFHSEnv {
|
|
inherit pname version;
|
|
|
|
targetPkgs = pkgs: [
|
|
dbus
|
|
fontconfig
|
|
freetype
|
|
glib
|
|
libGL
|
|
xkeyboard_config
|
|
xorg.libICE
|
|
xorg.libSM
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xorg.libXi
|
|
xorg.libXrender
|
|
xorg.libxcb
|
|
zlib
|
|
];
|
|
|
|
extraInstallCommands = ''
|
|
install -Dvm644 ${src}/Driver/99-Kingst.rules \
|
|
$out/lib/udev/rules.d/99-Kingst.rules
|
|
'';
|
|
|
|
runScript = "${src}/KingstVIS";
|
|
|
|
meta = {
|
|
description = "Kingst Virtual Instruments Studio, software for logic analyzers";
|
|
homepage = "http://www.qdkingst.com/";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.luisdaranda ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|