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

19 lines
495 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 }:
2013-03-02 15:00:50 +00:00
stdenv.mkDerivation rec {
2013-03-02 04:40:20 +00:00
name = "python27-docs-pdf-a4-2.7.3";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-pdf-a4.tar.bz2;
sha256 = "13da88panq5b6qfhf8k4dgqgxkg4ydcac5cx69a3f35s1w90xdjr";
};
installPhase = ''
mkdir -p $out/share/docs
2013-03-02 15:00:50 +00:00
cp -R ./ $out/share/docs/${name}
2013-03-02 04:40:20 +00:00
'';
meta = {
maintainers = [ lib.maintainers.chaoflow ];
};
2013-03-02 04:40:20 +00:00
}