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

stdenv.mkDerivation rec {
  name = "fribidi-${version}";
  version = "0.19.7";

  src = fetchurl {
    url = "http://fribidi.org/download/${name}.tar.bz2";
    sha256 = "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8";
  };

  hardeningDisable = [ "format" ];

  outputs = [ "out" "devdoc" ];

  meta = with stdenv.lib; {
    homepage = http://fribidi.org/;
    description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
    license = licenses.gpl2;
    platforms = platforms.unix;
  };
}