Merge pull request #304512 from viraptor/boxes-update

boxes: 1.3 -> 2.3.0
This commit is contained in:
Stanisław Pitucha 2024-04-18 16:20:05 +10:00 committed by GitHub
commit e7032a8c0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,34 +1,36 @@
{ lib, stdenv, fetchFromGitHub, bison, flex }: { lib, gccStdenv, fetchFromGitHub, bison, flex, pcre2, libunistring, ncurses }:
stdenv.mkDerivation rec { gccStdenv.mkDerivation rec {
pname = "boxes"; pname = "boxes";
version = "1.3"; version = "2.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ascii-boxes"; owner = "ascii-boxes";
repo = "boxes"; repo = "boxes";
rev = "v${version}"; rev = "v${version}";
sha256 = "0b12rsynrmkldlwcb62drk33kk0aqwbj10mq5y5x3hjf626gjwsi"; hash = "sha256-/gc/5vDflmEwOtQbtLwRcchyr22rLQcWqs5GrwRxY70=";
}; };
# Building instructions: # Building instructions:
# https://boxes.thomasjensen.com/build.html#building-on-linux--unix # https://boxes.thomasjensen.com/build.html#building-on-linux--unix
nativeBuildInputs = [ bison flex ]; nativeBuildInputs = [ bison flex ];
buildInputs = [ pcre2 libunistring ncurses ];
dontConfigure = true; dontConfigure = true;
# Makefile references a system wide config file in '/usr/share'. Instead, we # Makefile references a system wide config file in '/usr/share'. Instead, we
# move it within the store by default. # move it within the store by default.
preBuild = '' preBuild = ''
substituteInPlace Makefile \ substituteInPlace Makefile \
--replace "GLOBALCONF = /usr/share/boxes" \ --replace-fail "GLOBALCONF = /usr/share/boxes" \
"GLOBALCONF=${placeholder "out"}/share/boxes/boxes-config" "GLOBALCONF=${placeholder "out"}/share/boxes/boxes-config"
''; '';
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; makeFlags = [ "CC=${gccStdenv.cc.targetPrefix}cc" ];
installPhase = '' installPhase = ''
install -Dm755 -t $out/bin src/boxes install -Dm755 -t $out/bin out/boxes
install -Dm644 -t $out/share/boxes boxes-config install -Dm644 -t $out/share/boxes boxes-config
install -Dm644 -t $out/share/man/man1 doc/boxes.1 install -Dm644 -t $out/share/man/man1 doc/boxes.1
''; '';