Merge pull request #177414 from zendo/blueprint-update

blueprint-compiler: 2022-05-27 -> 0.2.0
This commit is contained in:
Jan Tojnar 2022-07-01 19:42:25 +02:00 committed by GitHub
commit 9095659f80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,14 @@
stdenv.mkDerivation rec {
pname = "blueprint-compiler";
version = "unstable-2022-05-27";
version = "0.2.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jwestman";
repo = pname;
rev = "cebd9ecadc53790cd547392899589dd5de0ac552";
sha256 = "sha256-mNR0ooJSRBIXy2E4avXYEdO1aSST+j41TsVg8+kitwo=";
rev = "v${version}";
sha256 = "sha256-LXZ6n1oCbPa0taVbUZf52mGECrzXIcF8EaMVJ30rMtc=";
};
# Requires pythonfuzz, which I've found difficult to package
@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson
ninja
python3.pkgs.wrapPython
];
buildInputs = [
@ -37,10 +36,6 @@ stdenv.mkDerivation rec {
gobject-introspection
];
postFixup = ''
wrapPythonPrograms
'';
meta = with lib; {
description = "A markup language for GTK user interface files";
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";