nixpkgs/pkgs/development/libraries/fribidi/default.nix

23 lines
539 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
2016-09-15 08:39:29 +00:00
version = "0.19.7";
2015-12-23 01:59:47 +00:00
src = fetchurl {
url = "http://fribidi.org/download/${name}.tar.bz2";
2016-09-15 08:39:29 +00:00
sha256 = "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8";
};
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
2016-09-15 08:39:29 +00:00
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;
};
}