2018-06-01 23:01:37 +01:00
|
|
|
{ stdenv
|
2020-11-27 00:30:23 +00:00
|
|
|
, buildPackages
|
2018-06-01 23:01:37 +01:00
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
2018-06-20 17:54:42 +01:00
|
|
|
, fixDarwinDylibNames
|
2018-07-18 00:10:54 +01:00
|
|
|
, python3
|
2018-06-01 23:01:37 +01:00
|
|
|
}:
|
2006-07-08 13:19:24 +01:00
|
|
|
|
2011-03-20 14:54:39 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-01 23:01:37 +01:00
|
|
|
pname = "fribidi";
|
2020-10-20 19:48:13 +01:00
|
|
|
version = "1.0.10";
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2018-07-18 00:10:54 +01:00
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
2019-10-03 09:59:44 +01: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 23:01:37 +01:00
|
|
|
src = fetchurl {
|
2020-10-20 19:48:13 +01:00
|
|
|
url = "https://github.com/fribidi/fribidi/releases/download/v${version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "009wcpgk4jj5x52skjkfs6xar6x38mcngs75rb59nj9ig1y6h73z";
|
2009-03-10 17:24:15 +00:00
|
|
|
};
|
|
|
|
|
2018-07-18 00:10:54 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs test
|
|
|
|
'';
|
|
|
|
|
2019-08-03 07:27:50 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2020-11-27 00:30:23 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2019-08-03 07:27:50 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ python3 ];
|
2016-09-15 09:39:29 +01:00
|
|
|
|
2014-09-25 16:51:05 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01: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 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2006-07-08 13:19:24 +01:00
|
|
|
};
|
|
|
|
}
|