biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / fspy / default.nix
blob0227e889fd6b910af31f2625c038c6a4eccef66d
1 { appimageTools, lib, fetchurl }:
2 let
3   pname = "fspy";
4   version = "1.0.3";
6   src = fetchurl {
7     url = "https://github.com/stuffmatic/fSpy/releases/download/v${version}/${pname}-${version}-x86_64.AppImage";
8     sha256 = "sha256-L+qsSExuEkzZkjnV/J6rrZ3BXqWQd+IfsN6a3kvQF3A=";
9   };
11 in appimageTools.wrapType2 {
12   inherit pname version src;
14   meta = with lib; {
15     description = "Cross platform app for quick and easy still image camera matching";
16     license = licenses.gpl3;
17     homepage = "https://fspy.io/";
18     knownVulnerabilities = [ "Vendors Electron 2.0 (end-of-life)" ];
19     maintainers = with maintainers; [ polygon ];
20     platforms = platforms.linux;
21     mainProgram = "fspy";
22   };