26 lines
796 B
Nix
26 lines
796 B
Nix
{ 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 ];
|
|
};
|
|
}
|