pgf-umlsd: init at unstable-2020-05-28

This commit is contained in:
AndersonTorres 2022-10-29 18:07:37 -03:00
parent 92ed989f81
commit 59d8692255
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "pgf-umlcd";
version = "unstable-2020-05-28";
src = fetchFromGitHub {
owner = "pgf-tikz";
repo = "pgf-umlsd";
rev = "8766cc18596dbfa66202ceca01c62cab1c3ed6a2";
hash = "sha256-gSBO7uDPMer9XyHfs0rr+2lricN5Nb4cOlShCsk0cPc=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/texmf-nix
cp -prd doc tex/latex $out/share/texmf-nix/
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/pgf-tikz/pgf-umlsd";
description = "Some LaTeX macros for UML Sequence Diagrams";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};
})

View file

@ -4055,6 +4055,8 @@ with pkgs;
pgf-umlcd = callPackage ../tools/typesetting/tex/pgf-tikz/pgf-umlcd.nix { };
pgf-umlsd = callPackage ../tools/typesetting/tex/pgf-tikz/pgf-umlsd.nix { };
pgfplots = callPackage ../tools/typesetting/tex/pgf-tikz/pgfplots.nix { };
pplatex = callPackage ../tools/typesetting/tex/pplatex { };