Skip to content

Commit

Permalink
pyfa: init at 2.60.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daholli committed Oct 8, 2024
1 parent e774acb commit d5cd254
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/py/pyfa/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
lib,
appimageTools,
fetchurl,
}:
let
version = "2.60.1";
in
appimageTools.wrapType1 {
inherit version;
pname = "pyfa";

src = fetchurl {
url = "https://github.com/pyfa-org/Pyfa/releases/download/v${version}/pyfa-v${version}-linux.AppImage";
name = "pyfa-${version}";
hash = "sha256-+nyIG6pweIgC6ZiWJaO4E2Fp0/zP+DhQrUWzHnIBQXk=";
};

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";
};
}

0 comments on commit d5cd254

Please sign in to comment.