nixpkgs/pkgs/development/libraries/fribidi/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

19 lines
472 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
version = "0.19.6";
src = fetchurl {
url = "http://fribidi.org/download/${name}.tar.bz2";
sha256 = "0zg1hpaml34ny74fif97j7ngrshlkl3wk3nja3gmlzl17i1bga6b";
};
meta = with stdenv.lib; {
homepage = http://fribidi.org/;
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
license = licenses.gpl2;
platforms = platforms.unix;
};
}