nixpkgs/pkgs/misc/sagetex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
978 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
2023-09-03 11:02:34 +00:00
, writeShellScript
, texliveBasic
}:
2023-09-03 11:02:34 +00:00
stdenv.mkDerivation rec {
pname = "sagetex";
2022-10-01 01:37:04 +00:00
version = "3.6.1";
src = fetchFromGitHub {
owner = "sagemath";
repo = "sagetex";
rev = "v${version}";
2022-10-01 01:37:04 +00:00
sha256 = "sha256-OfhbXHbGI+DaDHqZCOGiSHJPHjGuT7ZqSEjKweloW38=";
};
2023-09-03 11:02:34 +00:00
outputs = [ "tex" ];
nativeBuildInputs = [
texliveBasic
2023-09-03 11:02:34 +00:00
# multiple-outputs.sh fails if $out is not defined
(writeShellScript "force-tex-output.sh" ''
out="''${tex-}"
'')
];
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;
};
2023-09-03 11:02:34 +00:00
}