Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
866 B
Nix
47 lines
866 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
python3,
|
|
pkg-config,
|
|
vala,
|
|
glib,
|
|
gobject-introspection,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xmlbird";
|
|
version = "1.2.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-8GX4ijF+AxaGGFlSxRPOAoUezRG6592jOrifz/mWTRM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
pkg-config
|
|
vala
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure \
|
|
--replace 'platform.dist()[0]' '"nix"'
|
|
patchShebangs .
|
|
'';
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
installPhase = "./install.py";
|
|
|
|
meta = with lib; {
|
|
description = "XML parser for Vala and C programs";
|
|
homepage = "https://birdfont.org/xmlbird.php";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|