2018-08-08 19:02:57 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, freetype, cmake, python }:
|
2013-10-14 06:36:39 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-14 14:18:57 +00:00
|
|
|
version = "1.3.6";
|
2013-10-14 06:36:39 +00:00
|
|
|
name = "graphite2-${version}";
|
2013-11-24 11:43:22 +00:00
|
|
|
|
2013-10-14 06:36:39 +00:00
|
|
|
src = fetchurl {
|
2016-03-14 14:18:57 +00:00
|
|
|
url = "https://github.com/silnrsi/graphite/releases/download/"
|
|
|
|
+ "${version}/graphite-${version}.tgz";
|
|
|
|
sha256 = "0xdg6bc02bl8yz39l5i2skczfg17q4lif0qqan0dhvk0mibpcpj7";
|
2013-10-14 06:36:39 +00:00
|
|
|
};
|
|
|
|
|
2018-05-11 17:05:39 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [ freetype ];
|
2013-10-14 06:36:39 +00:00
|
|
|
|
2014-06-01 05:51:16 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./macosx.patch ];
|
|
|
|
|
2018-08-08 19:02:57 +00:00
|
|
|
checkInputs = [ python ];
|
|
|
|
doCheck = false; # fails, probably missing something
|
|
|
|
|
2018-10-27 13:27:09 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-14 06:36:39 +00:00
|
|
|
description = "An advanced font engine";
|
2018-10-27 13:27:09 +00:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.lgpl21;
|
2013-10-14 06:36:39 +00:00
|
|
|
};
|
|
|
|
}
|