mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-06 05:13:37 +00:00
36 lines
665 B
Nix
36 lines
665 B
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
lib,
|
|
}:
|
|
|
|
let
|
|
pythonDocs = {
|
|
html = {
|
|
recurseForDerivations = true;
|
|
python314 = import ./3.14-html.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
pdf_a4 = {
|
|
recurseForDerivations = true;
|
|
python314 = import ./3.14-pdf-a4.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
text = {
|
|
recurseForDerivations = true;
|
|
python314 = import ./3.14-text.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
texinfo = {
|
|
recurseForDerivations = true;
|
|
python314 = import ./3.14-texinfo.nix {
|
|
inherit stdenv fetchurl lib;
|
|
};
|
|
};
|
|
};
|
|
in
|
|
pythonDocs
|