2017-12-16 00:04:53 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
|
2006-07-08 14:19:24 +02:00
|
|
|
|
2011-03-20 15:54:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fribidi-${version}";
|
2016-09-15 10:39:29 +02:00
|
|
|
version = "0.19.7";
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2017-12-16 00:04:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fribidi";
|
|
|
|
repo = "fribidi";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "10q5jfch5qzrj2w4fbkr086ank66plx8hp7ra9a01irj80pbk96d";
|
2009-03-10 18:24:15 +01:00
|
|
|
};
|
|
|
|
|
2017-12-16 00:04:53 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
# Configure script checks for glib, but it is only used for tests.
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2016-09-15 10:39:29 +02:00
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
2014-09-25 17:51:05 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-12-16 00:04:53 +01:00
|
|
|
homepage = https://github.com/fribidi/fribidi;
|
2009-03-10 18:24:15 +01:00
|
|
|
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
|
2017-12-16 00:04:53 +01:00
|
|
|
license = licenses.lgpl21;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2006-07-08 14:19:24 +02:00
|
|
|
};
|
|
|
|
}
|