2018-06-01 22:01:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
2018-11-29 11:51:31 +00:00
|
|
|
, fetchpatch
|
2018-06-01 22:01:37 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
2018-06-20 16:54:42 +00:00
|
|
|
, fixDarwinDylibNames
|
2018-07-17 23:10:54 +00:00
|
|
|
, python3
|
2018-06-01 22:01:37 +00:00
|
|
|
}:
|
2006-07-08 12:19:24 +00:00
|
|
|
|
2011-03-20 14:54:39 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-01 22:01:37 +00:00
|
|
|
pname = "fribidi";
|
2019-10-03 08:59:44 +00:00
|
|
|
version = "1.0.7";
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2018-07-17 23:10:54 +00:00
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
2019-10-03 08:59:44 +00:00
|
|
|
# NOTE: Only URL tarball has "Have pre-generated man pages: true", which works-around upstream usage of some rare ancient `c2man` fossil application.
|
2018-06-01 22:01:37 +00:00
|
|
|
src = fetchurl {
|
2019-08-03 06:27:50 +00:00
|
|
|
url = "https://github.com/fribidi/fribidi/releases/download/v${version}/${pname}-${version}.tar.bz2";
|
2019-10-03 08:59:44 +00:00
|
|
|
sha256 = "0pckda4fcn0aw32lpycwdp25r2m7vca8zspq815ppi9gkwgg5das";
|
2009-03-10 17:24:15 +00:00
|
|
|
};
|
|
|
|
|
2018-07-17 23:10:54 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs test
|
|
|
|
'';
|
|
|
|
|
2019-08-03 06:27:50 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2019-08-03 06:27:50 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ python3 ];
|
2016-09-15 08:39:29 +00:00
|
|
|
|
2014-09-25 15:51:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-12-15 23:04:53 +00:00
|
|
|
homepage = https://github.com/fribidi/fribidi;
|
2009-03-10 17:24:15 +00:00
|
|
|
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
|
2017-12-15 23:04:53 +00:00
|
|
|
license = licenses.lgpl21;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.unix;
|
2006-07-08 12:19:24 +00:00
|
|
|
};
|
|
|
|
}
|