nixpkgs/pkgs/development/libraries/fribidi/default.nix

40 lines
994 B
Nix
Raw Normal View History

2018-06-02 00:01:37 +02:00
{ stdenv
, fetchurl
2018-11-29 12:51:31 +01:00
, fetchpatch
2018-06-02 00:01:37 +02:00
, meson
, ninja
, pkgconfig
, fixDarwinDylibNames
2018-07-18 01:10:54 +02:00
, python3
2018-06-02 00:01:37 +02:00
}:
stdenv.mkDerivation rec {
2018-06-02 00:01:37 +02:00
pname = "fribidi";
2019-10-03 10:59:44 +02:00
version = "1.0.7";
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 {
url = "https://github.com/fribidi/fribidi/releases/download/v${version}/${pname}-${version}.tar.bz2";
2019-10-03 10:59:44 +02:00
sha256 = "0pckda4fcn0aw32lpycwdp25r2m7vca8zspq815ppi9gkwgg5das";
};
2018-07-18 01:10:54 +02:00
postPatch = ''
patchShebangs test
'';
nativeBuildInputs = [ meson ninja pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
2015-12-23 02:59:47 +01:00
doCheck = true;
checkInputs = [ python3 ];
2016-09-15 10:39:29 +02:00
meta = with stdenv.lib; {
homepage = https://github.com/fribidi/fribidi;
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
license = licenses.lgpl21;
platforms = platforms.unix;
};
}