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

35 lines
1 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, python3, xmlbird,
2019-10-03 17:58:33 +00:00
cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala_0_44,
gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "birdfont";
2021-04-27 15:24:41 +00:00
version = "2.29.4";
src = fetchurl {
url = "https://birdfont.org/releases/${pname}-${version}.tar.xz";
2021-04-27 15:24:41 +00:00
sha256 = "sha256-caNY6PrsqBrYwC61MxNsf8B9E8it1Ls1d+hdbf8u+o8=";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ python3 pkg-config vala_0_44 gobject-introspection wrapGAppsHook ];
2019-05-22 11:03:39 +00:00
buildInputs = [ xmlbird libgee cairo gdk-pixbuf glib gtk3 webkitgtk libnotify sqlite gsettings-desktop-schemas ];
postPatch = ''
substituteInPlace install.py \
--replace 'platform.version()' '"Nix"'
patchShebangs .
'';
buildPhase = "./build.py";
installPhase = "./install.py";
meta = with 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 ];
};
}