nixpkgs/pkgs/tools/misc/birdfont/default.nix

30 lines
985 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, python3, xmlbird,
2019-10-03 19:58:33 +02:00
cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala_0_44,
gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "birdfont";
2020-05-20 08:35:53 +02:00
version = "2.29.0";
src = fetchurl {
url = "https://birdfont.org/releases/${pname}-${version}.tar.xz";
2020-05-20 08:35:53 +02:00
sha256 = "18z3qbrsbfpn00c4xq3ck1mnmvrnqgl9g1s7m4dgc1871fi6sv8w";
};
2019-10-03 19:58:33 +02:00
nativeBuildInputs = [ python3 pkgconfig vala_0_44 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 ];
postPatch = "patchShebangs .";
buildPhase = "./build.py";
installPhase = "./install.py";
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 ];
};
}