nixpkgs/pkgs/tools/misc/birdfont/xmlbird.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
831 B
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchurl, python3, pkg-config, vala, glib, gobject-introspection }:
stdenv.mkDerivation rec {
pname = "xmlbird";
2023-10-24 05:52:04 +02:00
version = "1.2.14";
src = fetchurl {
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
2023-10-24 05:52:04 +02:00
sha256 = "sha256-qygvJC1glSfvwWL7oQPFykgitvnWXwHMhycSjSBGksU=";
};
2021-01-17 04:51:22 +01:00
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 ];
};
}