nixpkgs-suyu/pkgs/development/tools/misc/yodl/default.nix
Tobias Geerinckx-Rice cfe12c7edd yodl: Sourceforge -> (fetchFrom)GitHub
Cosmetic tweaks; maintain.

CC@ pSub
2015-09-01 05:42:12 +02:00

45 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, perl, icmake, utillinux }:
let version = "3.05.01"; in
stdenv.mkDerivation {
name = "yodl-${version}";
buildInputs = [ perl icmake ];
src = fetchFromGitHub {
sha256 = "02vbayvnz5p0055456i8kc8qxywkhn7agfrx1kwxaalbsnrd4g9h";
rev = version;
repo = "yodl";
owner = "fbb-git";
};
sourceRoot = "yodl-${version}-src/yodl";
preConfigure = ''
patchShebangs ./build
patchShebangs scripts/
substituteInPlace INSTALL.im --replace /usr $out
substituteInPlace macros/rawmacros/startdoc.pl --replace /usr/bin/perl ${perl}/bin/perl
substituteInPlace scripts/yodl2whatever.in --replace getopt ${utillinux}/bin/getopt
'';
buildPhase = ''
./build programs
./build macros
./build man
'';
installPhase = ''
./build install programs
./build install macros
./build install man
'';
meta = with stdenv.lib; {
description = "A package that implements a pre-document language and tools to process it";
homepage = https://fbb-git.github.io/yodl/;
license = licenses.gpl3;
maintainers = with maintainers; [ nckx pSub ];
platforms = platforms.linux;
};
}