about summary refs log tree commit diff
path: root/pkgs/by-name/te/textsnatcher/package.nix
blob: 21b75c31a37f08390b987f470bdf11a69202d8ec (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, vala
, wrapGAppsHook
, pkg-config
, pantheon
, libhandy
, libportal
, glib
, gtk3
, desktop-file-utils
, scrot
, tesseract
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "textsnatcher";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "RajSolai";
    repo = "TextSnatcher";
    rev = "v${finalAttrs.version}";
    hash = "sha256-phqtPjwKB5BoCpL+cMeHvRLL76ZxQ5T74cpAsgN+/JM=";
  };

  nativeBuildInputs = [
    meson
    ninja
    vala
    pkg-config
    desktop-file-utils
    wrapGAppsHook
  ];

  buildInputs = [
    pantheon.granite
    libhandy
    libportal
    gtk3
    glib
  ];

  preFixup = ''
    gappsWrapperArgs+=(
      --prefix PATH : ${lib.makeBinPath [ scrot tesseract ]}
    )
  '';

  meta = with lib; {
    description = "Copy Text from Images with ease, Perform OCR operations in seconds";
    homepage = "https://textsnatcher.rf.gd/";
    changelog = "https://github.com/RajSolai/TextSnatcher/releases/tag/v${finalAttrs.version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ galaxy ];
    mainProgram = "com.github.rajsolai.textsnatcher";
    platforms = platforms.linux;
  };
})