nixpkgs/pkgs/by-name/pg/pgf-pie/package.nix
Anderson Torres f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00

34 lines
753 B
Nix

{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "pgf-pie";
version = "0.7";
src = fetchFromGitHub {
owner = "pgf-tikz";
repo = "pgf-pie";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-tAUv35AMgJW5JI2KIXxxXFihqdB7qbMmNpAYhpDbAxs=";
};
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-pie";
description = "Some LaTeX macros for pie charts using the PGF/TikZ package";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};
})