chrysalis 0.12.0-binary -> 0.13.2 https://repology.org/project/chrysalis/versions attrpath: chrysalis Checking auto update branch... No auto update branch exists Old version 0.12.0-binary" not present in master derivation file with contents: { lib, appimageTools, fetchurl }: let pname = "chrysalis"; version = "0.12.0"; in appimageTools.wrapAppImage rec { name = "${pname}-${version}-binary"; src = appimageTools.extract { inherit name; src = fetchurl { url = "https://github.com/keyboardio/${pname}/releases/download/v${version}/${pname}-${version}.AppImage"; sha256 = "sha256-sQoEO1UII4Gbp7UbHCCyejsd94lkBbi93TH325EamFc="; }; }; multiPkgs = null; extraPkgs = p: (appimageTools.defaultFhsEnvArgs.multiPkgs p) ++ [ p.glib ]; # Also expose the udev rules here, so it can be used as: # services.udev.packages = [ pkgs.chrysalis ]; # to allow non-root modifications to the keyboards. extraInstallCommands = '' mv $out/bin/${name} $out/bin/${pname} mkdir -p $out/lib/udev/rules.d ln -s \ --target-directory=$out/lib/udev/rules.d \ ${src}/resources/static/udev/60-kaleidoscope.rules ''; meta = with lib; { description = "A graphical configurator for Kaleidoscope-powered keyboards"; homepage = "https://github.com/keyboardio/Chrysalis"; license = licenses.gpl3; maintainers = with maintainers; [ aw ]; platforms = [ "x86_64-linux" ]; }; }