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

40 lines
1,015 B
Nix
Raw Normal View History

2018-06-01 22:01:37 +00:00
{ stdenv
, fetchurl
, meson
, ninja
, pkgconfig
, fixDarwinDylibNames
2018-07-17 23:10:54 +00:00
, python3
2018-06-01 22:01:37 +00:00
}:
stdenv.mkDerivation rec {
2018-06-01 22:01:37 +00:00
name = "${pname}-${version}";
pname = "fribidi";
version = "1.0.4";
2015-12-23 01:59:47 +00:00
2018-07-17 23:10:54 +00:00
outputs = [ "out" "devdoc" ];
2018-06-01 22:01:37 +00:00
# NOTE: 2018-06-06 v1.0.4: Only URL tarball has "Have pre-generated man pages: true", which works-around upstream usage of some rare ancient `c2man` fossil application.
src = fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${name}.tar.bz2";
sha256 = "1gipy8fjyn6i4qrhima02x8xs493d21f22dijp88nk807razxgcl";
};
2018-07-17 23:10:54 +00:00
postPatch = ''
patchShebangs test
'';
2018-06-01 22:01:37 +00:00
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
2015-12-23 01:59:47 +00:00
2018-07-17 23:10:54 +00:00
checkInptus = [ python3 ];
2016-09-15 08:39:29 +00: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;
};
}