diff options
author | Liliana Marie Prikler <[email protected]> | 2024-11-23 17:26:26 +0100 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:36 +0100 |
commit | e51ff9c2ac7e9f465ea09661d75326172a82e2f5 (patch) | |
tree | 59cb29499ebc1ec2ef4b60ea5a53b4d54cb0f6de | |
parent | 82de874b1eaa1e101d52e428373aa2826ce2d59c (diff) |
gnu: blueprint-compiler-0.4: Fix build.
* gnu/packages/gnome.scm (blueprint-compiler-0.4)[arguments]: Drop ‘fix-tests’
phase.
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index b989e29018..6622edc447 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3410,7 +3410,12 @@ compiles to GTKBuilder XML.") (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0hj7f4xhwjc4x32r3lswwclbw37fw3spy806g4plkmym25hz4ydy")))))) + "0hj7f4xhwjc4x32r3lswwclbw37fw3spy806g4plkmym25hz4ydy")))) + (arguments + (substitute-keyword-arguments (package-arguments blueprint-compiler) + ((#:phases phases) + #~(modify-phases #$phases + (delete 'fix-tests))))))) (define-public cambalache (package |