Adding multitran. I added a note in the 'data' expression, regarding
a locale that should be added into the system. svn path=/nixpkgs/trunk/; revision=14582
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{stdenv, fetchurl, libmtsupport, libfacet, libbtree, libmtquery, help2man} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mt-utils-0.0.1alpha3";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/multitran/mt-utils-0.0.1alpha3.tar.bz2;
|
||||
sha256 = "e407702c90c5272882386914e1eeca5f6c5039393af9a44538536b94867b0a0e";
|
||||
};
|
||||
|
||||
buildInputs = [ libmtsupport libfacet libbtree libmtquery help2man ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -i -e 's@\$(DESTDIR)/usr@'$out'@' \
|
||||
-e 's@/usr/include/mt/support@${libmtsupport}/include/mt/support@' \
|
||||
-e 's@/usr/include/btree@${libbtree}/include/btree@' \
|
||||
-e 's@/usr/include/facet@${libfacet}/include/facet@' \
|
||||
-e 's@/usr/include/mt/query@${libmtquery}/include/mt/query@' \
|
||||
-e 's@-lmtquery@-lmtquery -lmtsupport -lfacet@' \
|
||||
src/Makefile;
|
||||
# Fixing multibyte locale output
|
||||
sed -i -e 's@message.length()@message.length()*5@' \
|
||||
src/converter.cc;
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://multitran.sourceforge.net/;
|
||||
description = "Multitran: simple command line utilities for dictionary maintainance";
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user