frotz: 2.44 -> 2.52
As a bonus, this new derivation also adds unicode support, which the current nixpkgs build lacks.
This commit is contained in:
parent
9fbbe30a44
commit
677125876e
@ -1,25 +1,40 @@
|
|||||||
{ stdenv, fetchFromGitHub, ncurses }:
|
{ fetchFromGitLab
|
||||||
|
, libao
|
||||||
|
, libmodplug
|
||||||
|
, libsamplerate
|
||||||
|
, libsndfile
|
||||||
|
, libvorbis
|
||||||
|
, ncurses
|
||||||
|
, stdenv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.44";
|
version = "2.52";
|
||||||
pname = "frotz";
|
pname = "frotz";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.com";
|
||||||
owner = "DavidGriffith";
|
owner = "DavidGriffith";
|
||||||
repo = "frotz";
|
repo = "frotz";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0gjkk4gxzqmxfdirrz2lr0bms6l9fc31vkmlywigkbdlh8wxgypp";
|
sha256 = "11ca1dz31b7s5vxjqncwjwmbbcr2m5v2rxjn49g4gnvwd6mqw48y";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = [ "CC=cc" "PREFIX=$(out)" "CURSES=-lncurses" ];
|
buildInputs = [ libao libmodplug libsamplerate libsndfile libvorbis ncurses ];
|
||||||
|
preBuild = ''
|
||||||
buildInputs = [ ncurses ];
|
makeFlagsArray+=(
|
||||||
|
CC="cc"
|
||||||
|
CFLAGS="-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600"
|
||||||
|
LDFLAGS="-lncursesw -ltinfo"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://frotz.sourceforge.net/";
|
homepage = "https://davidgriffith.gitlab.io/frotz/";
|
||||||
|
changelog = "https://gitlab.com/DavidGriffith/frotz/-/raw/${version}/NEWS";
|
||||||
description = "A z-machine interpreter for Infocom games and other interactive fiction.";
|
description = "A z-machine interpreter for Infocom games and other interactive fiction.";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.nicknovitski ];
|
maintainers = with maintainers; [ nicknovitski ddelabru ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user