2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, python3, pkg-config, vala, glib, gobject-introspection }:
|
2019-01-28 00:23:08 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xmlbird";
|
2020-11-03 06:06:23 +00:00
|
|
|
version = "1.2.12";
|
2019-01-28 00:23:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
|
2020-11-03 06:06:23 +00:00
|
|
|
sha256 = "15z4rvii3p54g2hasibjnf83c1702d84367fnl8pbisjqqrdcl04";
|
2019-01-28 00:23:08 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ python3 pkg-config vala gobject-introspection ];
|
2019-01-28 00:23:08 +00:00
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
2020-09-19 19:21:33 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace 'platform.dist()[0]' '"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 = "XML parser for Vala and C programs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://birdfont.org/xmlbird.php";
|
2019-01-29 03:37:48 +00:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-01-28 00:23:08 +00:00
|
|
|
}
|