summary refs log tree commit diff
path: root/pkgs/development/libraries/fribidi/default.nix
blob: c29900582c6c711e7230ad29fdf168c92c6b9e86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "fribidi-0.10.9";
  
  src = fetchurl {
    url = http://fribidi.org/download/fribidi-0.10.9.tar.gz;
    sha256 = "1d479wbygqmxcsyg3g7d6nmzlaa3wngy21ci5qcc5nhbyn97bz5q";
  };

  meta = {
    homepage = http://fribidi.org/;
    description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
  };
}