19 lines
492 B
Nix
19 lines
492 B
Nix
|
{stdenv, fetchurl} :
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "libmtsupport-0.0.1alpha2";
|
||
|
src = fetchurl {
|
||
|
url = mirror://sourceforge/multitran/libmtsupport-0.0.1alpha2.tar.bz2;
|
||
|
sha256 = "481f0f1ec15d7274f1e4eb93e7d060df10a181efd037eeff5e8056d283a9298b";
|
||
|
};
|
||
|
patchPhase = ''
|
||
|
sed -i -e 's@\$(DESTDIR)/usr@'$out'@' src/Makefile;
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = http://multitran.sourceforge.net/;
|
||
|
description = "Multitran lib: basic useful functions";
|
||
|
license = "GPLv2";
|
||
|
};
|
||
|
}
|