2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, python3, xmlbird,
|
2019-10-03 18:58:33 +01:00
|
|
|
cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala_0_44,
|
2019-01-28 00:23:08 +00:00
|
|
|
gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "birdfont";
|
2020-10-21 22:14:39 +01:00
|
|
|
version = "2.29.1";
|
2019-01-28 00:23:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://birdfont.org/releases/${pname}-${version}.tar.xz";
|
2020-10-21 22:14:39 +01:00
|
|
|
sha256 = "0620bppcbm9pb8l0d4sc56gfwkr97gw4zjirjz5ikk5lj0m801yi";
|
2019-01-28 00:23:08 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ python3 pkg-config vala_0_44 gobject-introspection wrapGAppsHook ];
|
2019-05-22 12:03:39 +01:00
|
|
|
buildInputs = [ xmlbird libgee cairo gdk-pixbuf glib gtk3 webkitgtk libnotify sqlite gsettings-desktop-schemas ];
|
2019-01-28 00:23:08 +00:00
|
|
|
|
2020-09-19 22:48:51 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace install.py \
|
|
|
|
--replace 'platform.version()' '"Nix"'
|
|
|
|
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2019-01-28 00:23:08 +00:00
|
|
|
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
|
|
|
|
installPhase = "./install.py";
|
2019-01-29 03:37:48 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-29 03:37:48 +00:00
|
|
|
description = "Font editor which can generate fonts in TTF, EOT, SVG and BIRDFONT format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://birdfont.org";
|
2019-01-29 03:37:48 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-01-28 00:23:08 +00:00
|
|
|
}
|