b345bca3af
I got it now - promised.
19 lines
509 B
Nix
19 lines
509 B
Nix
# This file was generated and will be overwritten by ./generate.sh
|
|
|
|
{ stdenv, fetchurl, lib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "python27-docs-html-2.7.3";
|
|
src = fetchurl {
|
|
url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-html.tar.bz2;
|
|
sha256 = "1hg92n0mzl9w6j33b2h0bf2vy6fsxnpxfdc3qw760vcm0y00155j";
|
|
};
|
|
installPhase = ''
|
|
mkdir -p $out/share/doc/python27
|
|
cp -R ./ $out/share/doc/python27/html
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.chaoflow ];
|
|
};
|
|
}
|