mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
22 lines
523 B
Nix
22 lines
523 B
Nix
{ stdenv, fetchurl, python3, pkgconfig, vala, glib, gobject-introspection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xmlbird";
|
|
version = "1.2.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz";
|
|
sha256 = "0qpqpqqd4wj711jzczfsr38fgcz1rzxchrqbssxnan659ycd9c78";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection ];
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
buildPhase = "./build.py";
|
|
|
|
installPhase = "./install.py";
|
|
}
|