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

28 lines
791 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
2018-06-01 18:38:09 +01:00
version = "1.0.3";
2015-12-23 01:59:47 +00:00
src = fetchFromGitHub {
owner = "fribidi";
repo = "fribidi";
2018-06-01 18:38:09 +01:00
rev = "v${version}";
sha256 = "02483nscxc695j9b92clcdf0xb7xkfjry09kqdkkhkzl3vdcj039";
};
2018-06-01 18:38:09 +01:00
# FIXME: Please build with Meson after https://github.com/fribidi/fribidi/issues/79 solved
nativeBuildInputs = [ autoreconfHook pkgconfig ];
# Configure script checks for glib, but it is only used for tests.
2015-12-23 01:59:47 +00:00
2016-09-15 09:39:29 +01:00
outputs = [ "out" "devdoc" ];
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;
};
}