nixpkgs/pkgs/development/libraries/fribidi/default.nix
Eelco Dolstra dfb3345149 * Updated fribidi.
svn path=/nixpkgs/trunk/; revision=14497
2009-03-10 17:24:15 +00:00

16 lines
368 B
Nix

{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)";
};
}