nixpkgs/pkgs/applications/misc/fspy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
702 B
Nix
Raw Permalink Normal View History

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