about summary refs log tree commit diff
path: root/pkgs/applications/misc/fspy/default.nix
blob: 1a4504d5608c0285dd0fd6d8e969cda7d3524dfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ 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 {
  inherit pname version src;

  extraInstallCommands = ''
    mv $out/bin/${pname}-${version} $out/bin/${pname}
  '';

  meta = with lib; {
    description = "A cross platform app for quick and easy still image camera matching";
    license = licenses.gpl3;
    homepage = "https://fspy.io/";
    knownVulnerabilities = [ "Vendors Electron 2.0 (end-of-life)" ];
    maintainers = with maintainers; [ polygon ];
    platforms = platforms.linux;
    mainProgram = "fspy";
  };
}