2021-05-20 23:08:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, bison, flex, makeWrapper, texinfo, readline, texLive }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
lib.fix (eukleides: stdenv.mkDerivation rec {
|
|
|
|
pname = "eukleides";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "1.5.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-20 23:08:51 +00:00
|
|
|
url = "http://www.eukleides.org/files/${pname}-${version}.tar.bz2";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "0s8cyh75hdj89v6kpm3z24i48yzpkr8qf0cwxbs9ijxj1i38ki0q";
|
|
|
|
};
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
# use $CC instead of hardcoded gcc
|
|
|
|
patches = [ ./use-CC.patch ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
nativeBuildInputs = [ bison flex texinfo makeWrapper ];
|
|
|
|
|
|
|
|
buildInputs = [ readline texLive ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace mktexlsr true
|
|
|
|
|
|
|
|
substituteInPlace doc/Makefile \
|
|
|
|
--replace ginstall-info install-info
|
|
|
|
|
|
|
|
substituteInPlace Config \
|
|
|
|
--replace '/usr/local' "$out" \
|
|
|
|
--replace '$(SHARE_DIR)/texmf' "$tex"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/euktoeps \
|
|
|
|
--set-default TEXINPUTS : \
|
|
|
|
--prefix TEXINPUTS : "$tex/tex/latex/eukleides" \
|
|
|
|
--prefix PATH : "${texLive}/bin"
|
|
|
|
wrapProgram $out/bin/euktopdf \
|
|
|
|
--set-default TEXINPUTS : \
|
|
|
|
--prefix TEXINPUTS : "$tex/tex/latex/eukleides" \
|
|
|
|
--prefix PATH : "${texLive}/bin"
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "doc" "tex" ];
|
|
|
|
|
|
|
|
passthru.tlType = "run";
|
|
|
|
passthru.pkgs = [ eukleides.tex ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Geometry Drawing Language";
|
|
|
|
homepage = "http://www.eukleides.org/";
|
2021-05-20 23:08:51 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Eukleides is a computer language devoted to elementary plane
|
|
|
|
geometry. It aims to be a fairly comprehensive system to create
|
|
|
|
geometric figures, either static or dynamic. Eukleides allows to
|
|
|
|
handle basic types of data: numbers and strings, as well as
|
|
|
|
geometric types of data: points, vectors, sets (of points), lines,
|
|
|
|
circles and conics.
|
|
|
|
'';
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2021-01-17 00:15:33 +00:00
|
|
|
maintainers = [ lib.maintainers.peti ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-05-20 23:08:51 +00:00
|
|
|
})
|