2019-01-28 01:23:08 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python3, xmlbird,
|
2019-05-22 13:03:39 +02:00
|
|
|
cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala,
|
2019-01-28 01:23:08 +01:00
|
|
|
gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "birdfont";
|
2019-08-03 23:46:30 +02:00
|
|
|
version = "2.27.0";
|
2019-01-28 01:23:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://birdfont.org/releases/${pname}-${version}.tar.xz";
|
2019-08-03 23:46:30 +02:00
|
|
|
sha256 = "0dr2cnvq30wak0j2k8089is7fvhw0ppwkfrrw1m649s2b95wav3q";
|
2019-01-28 01:23:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection wrapGAppsHook ];
|
2019-05-22 13:03:39 +02:00
|
|
|
buildInputs = [ xmlbird libgee cairo gdk-pixbuf glib gtk3 webkitgtk libnotify sqlite gsettings-desktop-schemas ];
|
2019-01-28 01:23:08 +01:00
|
|
|
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
|
|
|
|
installPhase = "./install.py";
|
2019-01-29 04:37:48 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Font editor which can generate fonts in TTF, EOT, SVG and BIRDFONT format";
|
|
|
|
homepage = https://birdfont.org;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-01-28 01:23:08 +01:00
|
|
|
}
|