As I said before, I want to keep a narrow focus on Nixpkgs. Now that I am back at undergrad, this focus should be even narrower: I will keep my eyes on Emacs, and nothing else.
39 lines
840 B
Nix
39 lines
840 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "pgf";
|
|
version = "3.1.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgf-tikz";
|
|
repo = "pgf";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-/zU2aTV39XpQhSpHVi8pBNsaAshcIhl6s+vOL1SO3Vw=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/texmf-nix
|
|
cp -prd doc source tex/{context,generic,latex,plain} $out/share/texmf-nix/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pgf-tikz/pgf";
|
|
description = "Portable Graphic Format for TeX - version ${finalAttrs.version}";
|
|
branch = lib.versions.major version;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|