mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
16 lines
420 B
Nix
16 lines
420 B
Nix
# This file was generated and will be overwritten by ./generate.sh
|
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
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/docs
|
|
cp -R ./ $out/share/docs/
|
|
'';
|
|
}
|