Nixfiles/pkgs/wowup.nix
Quentin Boyer e3e0011cf0 Better packaging of extra packages
Split into different files and use callPackage to build them. Also add
them to a 'package' attribute in the flake, to be able to call them
outside.
2022-11-20 21:09:17 +01:00

11 lines
282 B
Nix

{
appimageTools,
fetchurl,
}:
appimageTools.wrapType2 {
name = "wowup";
src = fetchurl {
url = "https://github.com/WowUp/WowUp.CF/releases/download/v2.9.2-beta.3/WowUp-CF-2.9.2-beta.3.AppImage";
sha256 = "sha256-iijulvH4yjU9vQOyQ0vCBYLR93GGL9Ak/SmVPB+ZDvY=";
};
}