add zammad to fw vm, add web-arm machine
This commit is contained in:
16
utils/pkgs/openaudible.nix
Normal file
16
utils/pkgs/openaudible.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ appimageTools, fetchurl }:
|
||||
let
|
||||
pname = "openaudible";
|
||||
version = "4.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/openaudible/openaudible/releases/download/v${version}/OpenAudible_${version}_x86_64.AppImage";
|
||||
# nix-prefetch-url --type sha256 --name Creality_Print-v4.3.7.6627-x86_64-Release.AppImage https://file2-cdn.creality.com/file/05a4538e0c7222ce547eb8d58ef0251e/Creality_Print-v4.3.7.6627-x86_64-Release.AppImage
|
||||
# nix-hash --type sha256 --to-sri
|
||||
sha256 = "sha256-iTxN+SSGddbddtcqx2u69kEJYtSCLW7DOxu0HDYHfz0=";
|
||||
};
|
||||
in
|
||||
appimageTools.wrapType2 {
|
||||
inherit pname version src;
|
||||
extraPkgs = pkgs: [ pkgs.webkitgtk pkgs.glib-networking ];
|
||||
}
|
||||
Reference in New Issue
Block a user