1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 08:29:20 +03:00
nixpkgs/pkgs/development/interpreters/python/cpython/docs/2.7-html.nix

19 lines
483 B
Nix
Raw Normal View History

2013-03-02 05:40:20 +01:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-02 05:40:20 +01:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-03-06 22:49:25 -08:00
name = "python27-docs-html-2.7.16";
2013-03-02 05:40:20 +01:00
src = fetchurl {
2019-03-06 22:49:25 -08:00
url = http://docs.python.org/ftp/python/doc/2.7.16/python-2.7.16-docs-html.tar.bz2;
sha256 = "1razs1grzhai65ihaiyph8kz6ncjkgp1gsn3c8v7kanf13lqim02";
2013-03-02 05:40:20 +01:00
};
installPhase = ''
mkdir -p $out/share/doc/python27
cp -R ./ $out/share/doc/python27/html
2013-03-02 05:40:20 +01:00
'';
meta = {
maintainers = [ ];
};
2013-03-02 05:40:20 +01:00
}