Added pgfplots package
svn path=/nixpkgs/trunk/; revision=33067
This commit is contained in:
parent
0a7c3ff061
commit
a315685cd8
20
pkgs/tools/typesetting/tex/pgfplots/default.nix
Normal file
20
pkgs/tools/typesetting/tex/pgfplots/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{stdenv, fetchurl, unzip}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "pgfplots-1.5.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sourceforge/pgfplots/pgfplots_1.5.1.tds.zip;
|
||||||
|
sha256 = "1xajrmq35i0qlsfwydy5zzg6f1jg88hqqh5b3xsmglzrarnllbdi";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
unpackPhase = "unzip $src";
|
||||||
|
|
||||||
|
buildPhase = "true";
|
||||||
|
|
||||||
|
installPhase = "
|
||||||
|
ensureDir $out/share/texmf-nix
|
||||||
|
cp -prd * $out/share/texmf-nix
|
||||||
|
";
|
||||||
|
}
|
@ -8513,6 +8513,8 @@ let
|
|||||||
pgf1 = callPackage ../tools/typesetting/tex/pgf/1.x.nix { };
|
pgf1 = callPackage ../tools/typesetting/tex/pgf/1.x.nix { };
|
||||||
|
|
||||||
pgf2 = callPackage ../tools/typesetting/tex/pgf/2.x.nix { };
|
pgf2 = callPackage ../tools/typesetting/tex/pgf/2.x.nix { };
|
||||||
|
|
||||||
|
pgfplots = callPackage ../tools/typesetting/pgfplots { };
|
||||||
|
|
||||||
pjsip = callPackage ../applications/networking/pjsip { };
|
pjsip = callPackage ../applications/networking/pjsip { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user