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

53 lines
1.2 KiB
Nix
Raw Normal View History

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