Files
nixpkgs/pkgs/by-name/te/textsnatcher/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02: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 = 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;
mainProgram = "com.github.rajsolai.textsnatcher";
platforms = platforms.linux;
};
})