2021-01-16 19:51:22 -08:00
|
|
|
{ lib, stdenv, fetchurl, python3, pkg-config, vala, glib, gobject-introspection }:
|
2019-01-27 16:23:08 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xmlbird";
|
2020-11-02 22:06:23 -08:00
|
|
|
version = "1.2.12";
|
2019-01-27 16:23:08 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
|
2020-11-02 22:06:23 -08:00
|
|
|
sha256 = "15z4rvii3p54g2hasibjnf83c1702d84367fnl8pbisjqqrdcl04";
|
2019-01-27 16:23:08 -08:00
|
|
|
};
|
|
|
|
|
2021-01-16 19:51:22 -08:00
|
|
|
nativeBuildInputs = [ python3 pkg-config vala gobject-introspection ];
|
2019-01-27 16:23:08 -08:00
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
2020-09-19 11:21:33 -07:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace 'platform.dist()[0]' '"nix"'
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2019-01-27 16:23:08 -08:00
|
|
|
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
|
|
|
|
installPhase = "./install.py";
|
2019-01-28 19:37:48 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-01-28 19:37:48 -08:00
|
|
|
description = "XML parser for Vala and C programs";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://birdfont.org/xmlbird.php";
|
2019-01-28 19:37:48 -08:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-01-27 16:23:08 -08:00
|
|
|
}
|