2019-01-28 01:23:08 +01:00
|
|
|
{ stdenv, fetchurl, python3, pkgconfig, vala, glib, gobject-introspection }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xmlbird";
|
2019-12-09 19:58:29 +01:00
|
|
|
version = "1.2.11";
|
2019-01-28 01:23:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
|
2019-12-09 19:58:29 +01:00
|
|
|
sha256 = "1ycbgjvywnlc0garw8qjqd18s0xnrwjvssdrb410yschv3wjq1i0";
|
2019-01-28 01:23:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection ];
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
|
|
|
|
installPhase = "./install.py";
|
2019-01-29 04:37:48 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "XML parser for Vala and C programs";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://birdfont.org/xmlbird.php";
|
2019-01-29 04:37:48 +01:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-01-28 01:23:08 +01:00
|
|
|
}
|