blueprint-compiler: 2022-05-27 -> 0.2.0

remove wrapPython

zendo 420f7d19 30ac7a88

+3 -8
+3 -8
pkgs/development/compilers/blueprint/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "blueprint-compiler"; 12 - version = "unstable-2022-05-27"; 12 + version = "0.2.0"; 13 13 14 14 src = fetchFromGitLab { 15 15 domain = "gitlab.gnome.org"; 16 16 owner = "jwestman"; 17 17 repo = pname; 18 - rev = "cebd9ecadc53790cd547392899589dd5de0ac552"; 19 - sha256 = "sha256-mNR0ooJSRBIXy2E4avXYEdO1aSST+j41TsVg8+kitwo="; 18 + rev = "v${version}"; 19 + sha256 = "sha256-LXZ6n1oCbPa0taVbUZf52mGECrzXIcF8EaMVJ30rMtc="; 20 20 }; 21 21 22 22 # Requires pythonfuzz, which I've found difficult to package ··· 25 25 nativeBuildInputs = [ 26 26 meson 27 27 ninja 28 - python3.pkgs.wrapPython 29 28 ]; 30 29 31 30 buildInputs = [ ··· 36 35 # So that the compiler can find GIR and .ui files 37 36 gobject-introspection 38 37 ]; 39 - 40 - postFixup = '' 41 - wrapPythonPrograms 42 - ''; 43 38 44 39 meta = with lib; { 45 40 description = "A markup language for GTK user interface files";