summary refs log tree commit diff
path: root/pkgs/applications/editors/ghostwriter/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-12-23 16:52:03 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-12-23 16:54:13 +0100
commit7685e17ea6b637ed928cbfe69aeab463deb5e28d (patch)
treefc46d62072eae70d47f264804798f8935d66e27a /pkgs/applications/editors/ghostwriter/default.nix
parent0c75ad784c83196861918042348bee6edb87afb1 (diff)
downloadnixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar.gz
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar.bz2
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar.lz
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar.xz
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.tar.zst
nixpkgs-7685e17ea6b637ed928cbfe69aeab463deb5e28d.zip
ghostwriter: install translations
Fixes #52724.
The `lrelease` binary is used to do that, so I had to add qttools.
Diffstat (limited to 'pkgs/applications/editors/ghostwriter/default.nix')
-rw-r--r--pkgs/applications/editors/ghostwriter/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/ghostwriter/default.nix b/pkgs/applications/editors/ghostwriter/default.nix
index 1ed09a1caa5..65645dcc969 100644
--- a/pkgs/applications/editors/ghostwriter/default.nix
+++ b/pkgs/applications/editors/ghostwriter/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, qmake, pkgconfig, qtwebkit, hunspell }:
+{ stdenv, fetchFromGitHub, qmake, pkgconfig, qttools, qtwebkit, hunspell }:
 
 stdenv.mkDerivation rec {
   pname = "ghostwriter";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "1pqlr08z5syqcq5p282asxwzrrm7c1w94baxyb467swh8yp3fj5m";
   };
 
-  nativeBuildInputs = [ qmake pkgconfig ];
+  nativeBuildInputs = [ qmake pkgconfig qttools ];
 
   buildInputs = [ qtwebkit hunspell ];