2021-12-03 21:35:38 +01:00
|
|
|
{ appimageTools, lib, fetchurl }:
|
|
|
|
let
|
|
|
|
pname = "fspy";
|
|
|
|
version = "1.0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/stuffmatic/fSpy/releases/download/v${version}/${pname}-${version}-x86_64.AppImage";
|
|
|
|
sha256 = "sha256-L+qsSExuEkzZkjnV/J6rrZ3BXqWQd+IfsN6a3kvQF3A=";
|
|
|
|
};
|
|
|
|
|
|
|
|
in appimageTools.wrapType2 {
|
2022-04-30 02:39:15 +02:00
|
|
|
inherit pname version src;
|
2021-12-03 21:35:38 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A cross platform app for quick and easy still image camera matching";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
homepage = "https://fspy.io/";
|
2024-04-03 16:47:07 +02:00
|
|
|
knownVulnerabilities = [ "Vendors Electron 2.0 (end-of-life)" ];
|
2021-12-03 21:35:38 +01:00
|
|
|
maintainers = with maintainers; [ polygon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
mainProgram = "fspy";
|
|
|
|
};
|
|
|
|
}
|