nixpkgs/pkgs/development/tools/misc/yodl/default.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, perl, icmake, utillinux }:
2016-01-09 20:07:20 +01:00
stdenv.mkDerivation rec {
2014-11-13 17:47:37 +01:00
name = "yodl-${version}";
version = "4.02.01";
2017-02-09 09:08:28 +01:00
nativeBuildInputs = [ icmake ];
buildInputs = [ perl ];
src = fetchFromGitLab {
sha256 = "0m8idd8m3z27rix55avchm21sd2spcxgrdf63w65zpvnywq0ydax";
rev = version;
repo = "yodl";
owner = "fbb-git";
};
setSourceRoot = ''
sourceRoot=$(echo */yodl)
'';
2014-11-13 17:47:37 +01:00
preConfigure = ''
patchShebangs ./build
patchShebangs scripts/
substituteInPlace INSTALL.im --replace /usr $out
2014-11-13 17:47:37 +01:00
substituteInPlace macros/rawmacros/startdoc.pl --replace /usr/bin/perl ${perl}/bin/perl
substituteInPlace scripts/yodl2whatever.in --replace getopt ${utillinux}/bin/getopt
2014-11-13 17:47:37 +01:00
'';
2018-03-06 20:24:08 +01:00
# Set TERM because icmbuild calls tput.
TERM = "xterm";
2014-11-13 17:47:37 +01:00
buildPhase = ''
./build programs
./build macros
2015-01-14 23:57:54 +01:00
./build man
2014-11-13 17:47:37 +01:00
'';
installPhase = ''
./build install programs
./build install macros
./build install man
'';
2014-11-13 17:47:37 +01:00
meta = with stdenv.lib; {
description = "A package that implements a pre-document language and tools to process it";
2018-07-01 13:32:49 +02:00
homepage = https://fbb-git.gitlab.io/yodl/;
2014-11-13 17:47:37 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
2014-11-13 17:47:37 +01:00
platforms = platforms.linux;
};
}