ifm: init at 2015-11-08
Listed on http://www.ifarchive.org/indexes/if-archiveXmapping-tools.html
This commit is contained in:
parent
5f1790101f
commit
2ac6f1e352
25
pkgs/tools/graphics/ifm/default.nix
Normal file
25
pkgs/tools/graphics/ifm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user