8 stdenv.mkDerivation rec {
13 url = "https://ifarchive.org/if-archive/infocom/compilers/inform6/source/inform-${version}.tar.gz";
14 sha256 = "sha256-SVsIhvlWVK0UWgyL85YuueE92CQ9RAgaUBruIOzGoww=";
17 buildInputs = [ perl ];
20 "CC=${stdenv.cc.targetPrefix}cc"
21 "PREFIX=${placeholder "out"}"
25 description = "Interactive fiction compiler and libraries";
27 Inform 6 is a C-like programming language for writing interactive fiction
28 (text adventure) games.
30 homepage = "https://gitlab.com/DavidGriffith/inform6unix";
31 changelog = "https://gitlab.com/DavidGriffith/inform6unix/-/raw/${version}/NEWS";
32 license = licenses.artistic2;
33 maintainers = with lib.maintainers; [ ddelabru ];
34 platforms = platforms.all;