python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / yo / yodl / package.nix
blobd8e5bd26b39da031c1f938050671b0b81b4b4c7f
1 { lib, stdenv, fetchFromGitLab, perl, icmake, util-linux }:
3 stdenv.mkDerivation rec {
4   pname = "yodl";
5   version = "4.03.03";
7   nativeBuildInputs = [ icmake ];
9   buildInputs = [ perl ];
11   src = fetchFromGitLab {
12     hash = "sha256-MeD/jjhwoiWTb/G8pHrnEEX22h+entPr9MhJ6WHO3DM=";
13     rev = version;
14     repo = "yodl";
15     owner = "fbb-git";
16   };
18   setSourceRoot = ''
19     sourceRoot=$(echo */yodl)
20   '';
22   preConfigure = ''
23     patchShebangs ./build
24     patchShebangs scripts/
25     substituteInPlace INSTALL.im --replace /usr $out
26     substituteInPlace macros/rawmacros/startdoc.pl --replace /usr/bin/perl ${perl}/bin/perl
27     substituteInPlace scripts/yodl2whatever.in --replace getopt ${util-linux}/bin/getopt
28   '';
30   # Set TERM because icmbuild calls tput.
31   TERM = "xterm";
33   buildPhase = ''
34     ./build programs
35     ./build macros
36     ./build man
37   '';
39   installPhase = ''
40     ./build install programs
41     ./build install macros
42     ./build install man
43   '';
45   meta = with lib; {
46     description = "Package that implements a pre-document language and tools to process it";
47     homepage = "https://fbb-git.gitlab.io/yodl/";
48     license = licenses.gpl3;
49     maintainers = with maintainers; [ pSub ];
50     platforms = platforms.linux;
51   };