Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

68 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
vala,
wrapGAppsHook3,
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
wrapGAppsHook3
];
buildInputs = [
pantheon.granite
libhandy
libportal
gtk3
glib
];
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : ${
lib.makeBinPath [
scrot
tesseract
]
}
)
'';
meta = {
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 = lib.licenses.gpl3Only;
mainProgram = "com.github.rajsolai.textsnatcher";
platforms = lib.platforms.linux;
};
})