Files
nixpkgs/pkgs/development/interpreters/python/cpython/docs/template-info.nix
2026-06-03 00:40:09 +02:00

27 lines
423 B
Nix

# This file was generated and will be overwritten by ./generate.sh
{
stdenv,
fetchurl,
lib,
}:
stdenv.mkDerivation {
pname = "pythonMAJORMINOR-docs-TYPE";
version = "VERSION";
src = fetchurl {
url = "URL";
sha256 = "SHA";
};
installPhase = ''
mkdir -p $out/share/info
cp ./python.info $out/share/info
'';
meta = {
maintainers = with lib.maintainers; [
panicgh
];
};
}