2006-07-08 16:19:24 +04:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2011-03-20 17:54:39 +03:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fribidi-${version}";
|
2016-09-15 11:39:29 +03:00
|
|
|
version = "0.19.7";
|
2015-12-23 04:59:47 +03:00
|
|
|
|
2006-07-08 16:19:24 +04:00
|
|
|
src = fetchurl {
|
2014-09-25 19:51:05 +04:00
|
|
|
url = "http://fribidi.org/download/${name}.tar.bz2";
|
2016-09-15 11:39:29 +03:00
|
|
|
sha256 = "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8";
|
2009-03-10 20:24:15 +03:00
|
|
|
};
|
|
|
|
|
2016-02-26 20:38:15 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 04:59:47 +03:00
|
|
|
|
2016-09-15 11:39:29 +03:00
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
2014-09-25 19:51:05 +04:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-10 20:24:15 +03:00
|
|
|
homepage = http://fribidi.org/;
|
|
|
|
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
|
2014-09-25 19:51:05 +04:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = platforms.unix;
|
2006-07-08 16:19:24 +04:00
|
|
|
};
|
|
|
|
}
|