Merge pull request #4373 from AndersonTorres/pgf
PGF: "upgrade" to version 3.00
This commit is contained in:
commit
d2dfc6a19f
26
pkgs/tools/typesetting/tex/pgf/3.x.nix
Normal file
26
pkgs/tools/typesetting/tex/pgf/3.x.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{stdenv, fetchurl, unzip}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pgf-3.00";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://downloads.sourceforge.net/project/pgf/pgf/version%203.0.0/pgf_3.0.0.tds.zip;
|
||||
sha256 = "0kj769hyp4z2zmdv3f8xv443wcfqn5nkkbzxzqgfxjizlz81aav7";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
# Multiple files problem
|
||||
unpackPhase = ''
|
||||
mkdir pgf
|
||||
cd pgf
|
||||
unzip $src
|
||||
'';
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = "
|
||||
mkdir -p $out/share/texmf-nix
|
||||
cp -prd * $out/share/texmf-nix
|
||||
";
|
||||
}
|
@ -11919,6 +11919,8 @@ let
|
||||
|
||||
pgf2 = callPackage ../tools/typesetting/tex/pgf/2.x.nix { };
|
||||
|
||||
pgf3 = callPackage ../tools/typesetting/tex/pgf/3.x.nix { };
|
||||
|
||||
pgfplots = callPackage ../tools/typesetting/tex/pgfplots { };
|
||||
|
||||
phabricator = callPackage ../misc/phabricator { };
|
||||
|
Loading…
Reference in New Issue
Block a user