summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/pg/pgf-pie/package.nix
blob: 1469f0666ed52a22495b93a3c003daa4f7bbede0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  lib,
  stdenvNoCC,
  fetchFromGitHub,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "pgf-pie";
  version = "0.7";

  src = fetchFromGitHub {
    owner = "pgf-tikz";
    repo = "pgf-pie";
    tag = 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 = {
    homepage = "https://github.com/pgf-tikz/pgf-pie";
    description = "Some LaTeX macros for pie charts using the PGF/TikZ package";
    license = lib.licenses.gpl2Plus;
    maintainers = [ ];
    platforms = lib.platforms.unix;
  };
})