summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/blueprint
diff options
context:
space:
mode:
authorzendo <linzway@qq.com>2022-06-12 23:04:43 +0800
committerzendo <linzway@qq.com>2022-07-01 23:51:58 +0800
commit420f7d191ca25d7fd99c11bbede4875015c2f208 (patch)
tree0741f7fb2a0c5de795264df7fd1bdc804f737f18 /pkgs/development/compilers/blueprint
parent30ac7a885494a2d306586c1e7fa0d09e2df4f97d (diff)
blueprint-compiler: 2022-05-27 -> 0.2.0
remove wrapPython
Diffstat (limited to 'pkgs/development/compilers/blueprint')
-rw-r--r--pkgs/development/compilers/blueprint/default.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/development/compilers/blueprint/default.nix b/pkgs/development/compilers/blueprint/default.nix
index 9aa1893effe7..8b595fc9c0ac 100644
--- a/pkgs/development/compilers/blueprint/default.nix
+++ b/pkgs/development/compilers/blueprint/default.nix
@@ -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";