ifm: init at 2015-11-08

Listed on http://www.ifarchive.org/indexes/if-archiveXmapping-tools.html
This commit is contained in:
Orivej Desh 2019-12-10 17:05:07 +00:00
parent 5f1790101f
commit 2ac6f1e352
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchzip, autoreconfHook, bison, flex, help2man, perl, tk }:
stdenv.mkDerivation rec {
pname = "ifm";
version = "2015-11-08";
src = fetchzip {
url = "https://bitbucket.org/zondo/ifm/get/dca0774e4d3a.zip";
sha256 = "14af21qjd5jvsscm6vxpsdrnipdr33g6niagzmykrhyfhwcbjahi";
};
nativeBuildInputs = [ autoreconfHook bison flex help2man ];
buildInputs = [ perl tk ]; # perl and wish are not run but written as shebangs.
enableParallelBuilding = false; # ifm-scan.l:16:10: fatal error: ifm-parse.h: No such file or directory
meta = with lib; {
homepage = https://bitbucket.org/zondo/ifm;
description = "Interactive fiction mapper";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}

View File

@ -1841,6 +1841,8 @@ in
icdiff = callPackage ../tools/text/icdiff {};
ifm = callPackage ../tools/graphics/ifm {};
interlock = callPackage ../servers/interlock {};
jellyfin = callPackage ../servers/jellyfin { ffmpeg = ffmpeg_4; };