nixpkgs/pkgs/development/interpreters/python/docs/3.0-pdf-a4.nix

19 lines
515 B
Nix
Raw Normal View History

2013-03-02 04:40:20 +00:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-02 04:40:20 +00:00
2013-03-02 15:00:50 +00:00
stdenv.mkDerivation rec {
2013-03-02 04:40:20 +00:00
name = "python30-docs-pdf-a4-3.0.1";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-pdf-a4.tar.bz2;
sha256 = "1qgcydqxxhy317lkzzs2v5as4hcwcblir8y3mdr173qsg51iggra";
};
installPhase = ''
mkdir -p $out/share/doc/python30
cp -R ./ $out/share/doc/python30/pdf-a4
2013-03-02 04:40:20 +00:00
'';
meta = {
maintainers = [ lib.maintainers.chaoflow ];
};
2013-03-02 04:40:20 +00:00
}