
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ghostscript,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lout";
|
|
version = "3.43.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "william8000";
|
|
repo = "lout";
|
|
rev = version;
|
|
hash = "sha256-bXLhkJqhv8pftDZYv6vn9ycy5u3vde+m3gCPvWJz2M8=";
|
|
};
|
|
|
|
buildInputs = [ ghostscript ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)/"
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
meta = {
|
|
description = "Document layout system similar in style to LaTeX";
|
|
|
|
longDescription = ''
|
|
The Lout document formatting system is now reads a high-level
|
|
description of a document similar in style to LaTeX and produces
|
|
a PostScript or plain text output file.
|
|
|
|
Lout offers an unprecedented range of advanced features,
|
|
including optimal paragraph and page breaking, automatic
|
|
hyphenation, PostScript EPS file inclusion and generation,
|
|
equation formatting, tables, diagrams, rotation and scaling,
|
|
sorted indexes, bibliographic databases, running headers and
|
|
odd-even pages, automatic cross referencing, multilingual
|
|
documents including hyphenation (most European languages are
|
|
supported), formatting of computer programs, and much more, all
|
|
ready to use. Furthermore, Lout is easily extended with
|
|
definitions which are very much easier to write than troff of
|
|
TeX macros because Lout is a high-level, purely functional
|
|
language, the outcome of an eight-year research project that
|
|
went back to the beginning.
|
|
'';
|
|
|
|
homepage = "https://github.com/william8000/lout";
|
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|