applications/misc/goldendict: New nixpkg.
svn path=/nixpkgs/trunk/; revision=32045
This commit is contained in:
parent
2d7fe30288
commit
109068c605
31
pkgs/applications/misc/goldendict/default.nix
Normal file
31
pkgs/applications/misc/goldendict/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchurl, qt4, libXtst, libvorbis, phonon, hunspell }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "goldendict-1.0.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/goldendict/${name}-src.tar.bz2";
|
||||
sha256 = "19p99dd5jgs0k66sy30vck7ymqj6dv1lh6w8xw18zczdll2h9yxk";
|
||||
};
|
||||
buildInputs = [ qt4 libXtst libvorbis phonon hunspell ];
|
||||
unpackPhase = ''
|
||||
mkdir ${name}-src
|
||||
cd ${name}-src
|
||||
tar xf ${src}
|
||||
'';
|
||||
patches = [ ./goldendict-paths.diff ];
|
||||
patchFlags = "-p 0";
|
||||
configurePhase = ''
|
||||
qmake
|
||||
'';
|
||||
installPhase = ''
|
||||
make INSTALL_ROOT="$out" install
|
||||
rm -rf "$out/share/app-install"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://goldendict.org/;
|
||||
description = "a feature-rich dictionary lookup program";
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.astsmtl ];
|
||||
};
|
||||
}
|
10
pkgs/applications/misc/goldendict/goldendict-paths.diff
Normal file
10
pkgs/applications/misc/goldendict/goldendict-paths.diff
Normal file
@ -0,0 +1,10 @@
|
||||
--- goldendict.pro~ 2010-12-27 22:52:21.000000000 +0100
|
||||
+++ goldendict.pro 2010-12-27 22:52:21.000000000 +0100
|
||||
@@ -63,2 +63,2 @@
|
||||
- isEmpty( PREFIX ):PREFIX = /usr/local
|
||||
- DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/apps/goldendict/\\\"
|
||||
+ isEmpty( PREFIX ):PREFIX = /
|
||||
+ DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/goldendict/\\\"
|
||||
@@ -66 +66 @@
|
||||
- locale.path = $$PREFIX/share/apps/goldendict/locale/
|
||||
+ locale.path = $$PREFIX/share/goldendict/locale/
|
@ -6806,6 +6806,8 @@ let
|
||||
|
||||
fossil = callPackage ../applications/version-management/fossil { };
|
||||
|
||||
goldendict = callPackage ../applications/misc/goldendict { };
|
||||
|
||||
grass = import ../applications/misc/grass {
|
||||
inherit (xlibs) libXmu libXext libXp libX11 libXt libSM libICE libXpm
|
||||
libXaw libXrender;
|
||||
|
Loading…
Reference in New Issue
Block a user