From 250c6b812cb998f10a5b6d71e28a4db0f5bbccb0 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Sat, 10 Aug 2019 00:54:50 +0200 Subject: [PATCH] hexyl: fix crossbuild --- srcpkgs/hexyl/template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/hexyl/template b/srcpkgs/hexyl/template index fe69983e332..094dadfe87e 100644 --- a/srcpkgs/hexyl/template +++ b/srcpkgs/hexyl/template @@ -1,7 +1,7 @@ # Template file for 'hexyl' pkgname=hexyl version=0.5.1 -revision=1 +revision=2 build_style=cargo short_desc="Command-line hex viewer" maintainer="SolitudeSF " @@ -14,6 +14,11 @@ case "$XBPS_TARGET_MACHINE" in aarch64-musl) broken="https://github.com/nix-rust/nix/issues/951" esac +pre_configure() { + cargo update --package ctrlc --precise 3.1.3 + cargo update --package nix --precise 0.14.1 +} + post_install() { vlicense LICENSE-MIT }