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