nixpkgs/pkgs/misc/sagetex/default.nix
Alexander Nortung 375b48a52d sagetex: init at 3.6
sagetex: init at 3.6

sagetex: refactor

Will now build from source

sagetex: etc

Changed description.

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
2022-01-25 13:47:36 +01:00

41 lines
827 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, texlive
}:
stdenv.mkDerivation rec {
version = "3.6";
pname = "sagetex";
passthru.tlType = "run";
src = fetchFromGitHub {
owner = "sagemath";
repo = "sagetex";
rev = "v${version}";
sha256 = "8iHcJbaY/dh0vmvYyd6zj1ZbuJRaJGb6bUBK1v4gXWU=";
};
buildInputs = [
texlive.combined.scheme-basic
];
buildPhase = ''
make sagetex.sty
'';
installPhase = ''
path="$out/tex/latex/sagetex"
mkdir -p "$path"
cp -va *.sty *.cfg *.def "$path/"
'';
meta = with lib; {
description = "Embed code, results of computations, and plots from Sage into LaTeX documents";
homepage = "https://github.com/sagemath/sagetex";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ alexnortung ];
platforms = platforms.all;
};
}