Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 480 B view raw
1# This file was generated and will be overwritten by ./generate.sh 2 3{ stdenv, fetchurl, lib }: 4 5stdenv.mkDerivation { 6 name = "python37-docs-text-3.7.2"; 7 src = fetchurl { 8 url = http://docs.python.org/ftp/python/doc/3.7.2/python-3.7.2-docs-text.tar.bz2; 9 sha256 = "0h50rlr8jclwfxa106b42q2vn2ynp219c4zsy5qz65n5m3b7y1g2"; 10 }; 11 installPhase = '' 12 mkdir -p $out/share/doc/python37 13 cp -R ./ $out/share/doc/python37/text 14 ''; 15 meta = { 16 maintainers = [ ]; 17 }; 18}