nixpkgs/pkgs/by-name/py/pyfa/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
777 B
Nix
Raw Normal View History

2024-10-15 21:06:39 +00:00
{
lib,
appimageTools,
fetchurl,
}:
let
2024-10-31 05:14:12 +00:00
version = "2.60.2";
2024-10-15 21:06:39 +00:00
in
appimageTools.wrapType2 {
inherit version;
pname = "pyfa";
src = fetchurl {
name = "pyfa-appimage-${version}";
url = "https://github.com/pyfa-org/Pyfa/releases/download/v${version}/pyfa-v${version}-linux.AppImage";
2024-10-31 05:14:12 +00:00
hash = "sha256-6doetQ6E1Occ/SqewfxRqPEX1MnUuFomm+8VmetIz4Y=";
2024-10-15 21:06:39 +00:00
};
meta = {
description = "Python fitting assistant, cross-platform fitting tool for EVE Online";
homepage = "https://github.com/pyfa-org/Pyfa";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
toasteruwu
cholli
];
mainProgram = "pyfa";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
platforms = lib.platforms.linux;
};
}