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

27 lines
693 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
2016-09-15 08:39:29 +00:00
version = "0.19.7";
2015-12-23 01:59:47 +00:00
src = fetchFromGitHub {
owner = "fribidi";
repo = "fribidi";
rev = version;
sha256 = "10q5jfch5qzrj2w4fbkr086ank66plx8hp7ra9a01irj80pbk96d";
};
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 08:39:29 +00: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;
};
}