Skip to content

Commit

Permalink
crow-translate: 2.9.5 -> 2.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
linsui authored and ehmry committed May 20, 2022
1 parent a9cb0e5 commit 5bd7f94
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions pkgs/applications/misc/crow-translate/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ lib
, stdenv
, nix-update-script
, fetchFromGitHub
, fetchzip
, substituteAll
, cmake
, extra-cmake-modules
, qttools
, kwayland
, leptonica
, tesseract4
, qtmultimedia
Expand All @@ -16,14 +16,11 @@

stdenv.mkDerivation rec {
pname = "crow-translate";
version = "2.9.5";
version = "2.9.8";

src = fetchFromGitHub {
owner = "crow-translate";
repo = pname;
rev = version;
sha256 = "sha256-AzwJJ85vxXsc0+W3QM8citN5f0AD6APQVd9628cfLgI=";
fetchSubmodules = true;
src = fetchzip {
url = "https://github.com/${pname}/${pname}/releases/download/${version}/${pname}-${version}-source.tar.gz";
hash = "sha256-ZqiQVpKwGpglSc05Y1r6uScZyG4qnklPXqTGKxpS3f8=";
};

patches = [
Expand All @@ -34,21 +31,26 @@ stdenv.mkDerivation rec {
})
];

nativeBuildInputs = [ cmake extra-cmake-modules qttools wrapQtAppsHook ];
nativeBuildInputs = [
cmake
extra-cmake-modules
qttools
wrapQtAppsHook
];

buildInputs = [ leptonica tesseract4 qtmultimedia qtx11extras ];
buildInputs = [
kwayland
leptonica
tesseract4
qtmultimedia
qtx11extras
];

postInstall = ''
substituteInPlace $out/share/applications/io.crow_translate.CrowTranslate.desktop \
--replace "Exec=qdbus" "Exec=${lib.getBin qttools}/bin/qdbus"
'';

passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};

meta = with lib; {
description = "A simple and lightweight translator that allows to translate and speak text using Google, Yandex and Bing";
homepage = "https://crow-translate.github.io/";
Expand Down

0 comments on commit 5bd7f94

Please sign in to comment.