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

stdenv.mkDerivation rec {
  name = "fribidi-${version}";
  version = "0.19.2";
  
  src = fetchurl {
    url = "http://fribidi.org/download/${name}.tar.gz";
    sha256 = "0xs1yr22zw9a1qq9ygsrqam0vzqdvb0ndzvjb3i2zda8drc93ks9";
  };

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