birdfont: init at 2.25.0 (and add dep xmlbird)

This commit is contained in:
Will Dietz
2019-01-27 19:27:26 -06:00
parent bf041c3f1d
commit 728a5ed5fd
3 changed files with 46 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ stdenv, fetchurl, python3, pkgconfig, vala, glib, gobject-introspection }:
stdenv.mkDerivation rec {
pname = "xmlbird";
version = "1.2.10";
src = fetchurl {
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
sha256 = "0qpqpqqd4wj711jzczfsr38fgcz1rzxchrqbssxnan659ycd9c78";
};
nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection ];
buildInputs = [ glib ];
postPatch = "patchShebangs .";
buildPhase = "./build.py";
installPhase = "./install.py";
}