uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
34
pkgs/tools/text/multitran/mtutils/default.nix
Normal file
34
pkgs/tools/text/multitran/mtutils/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{lib, stdenv, fetchurl, libmtsupport, libfacet, libbtree, libmtquery, help2man} :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mt-utils";
|
||||
version = "0.0.1alpha3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/multitran/mt-utils-${version}.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 maintenance";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = with lib.maintainers; [viric];
|
||||
platforms = with lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue