mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-21 11:46:08 +01:00
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.
11 lines
282 B
Nix
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=";
|
|
};
|
|
}
|