2022-02-02 04:44:50 +00:00
|
|
|
{ stdenv, lib, fetchgit, meson, ninja, python3Packages }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "blueprint-compiler";
|
2022-06-23 09:01:03 +00:00
|
|
|
version = "0.2.0";
|
2022-02-02 04:44:50 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://gitlab.gnome.org/jwestman/blueprint-compiler.git";
|
2022-06-23 09:01:03 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-LXZ6n1oCbPa0taVbUZf52mGECrzXIcF8EaMVJ30rMtc=";
|
2022-02-02 04:44:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
format = "other";
|
|
|
|
nativeBuildInputs = [ meson ninja ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Compiles Blueprint to GTK XML";
|
|
|
|
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
|
2022-03-27 03:49:26 +00:00
|
|
|
license = licenses.lgpl3Only;
|
2022-02-02 04:44:50 +00:00
|
|
|
};
|
|
|
|
}
|