Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
31 lines
777 B
Nix
31 lines
777 B
Nix
{
|
|
lib,
|
|
appimageTools,
|
|
fetchurl,
|
|
}:
|
|
let
|
|
version = "2.60.2";
|
|
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";
|
|
hash = "sha256-6doetQ6E1Occ/SqewfxRqPEX1MnUuFomm+8VmetIz4Y=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|