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