Ver a proveniência

Add flake outputs for the manuals

wip-nanopi-m4v2
Eelco Dolstra há 7 anos
ascendente
cometimento
2ba1f3c195
1 ficheiros alterados com 14 adições e 4 eliminações
  1. +14
    -4
      flake.nix

+ 14
- 4
flake.nix Ver ficheiro

@@ -6,20 +6,30 @@
description = "A collection of packages for the Nix package manager";

outputs = inputs:
let pkgs = import ./. { system = "x86_64-linux"; }; in
let
pkgs = import ./. { system = "x86_64-linux"; };
jobs = import ./pkgs/top-level/release.nix {
nixpkgs = inputs.self;
};
in
{
lib = (import ./lib) // {
nixosSystem = import ./nixos/lib/eval-config.nix;
};

checks.tarball = (import ./pkgs/top-level/release.nix {
nixpkgs = inputs.self;
}).tarball;
checks.tarball = jobs.tarball;

builders = {
inherit (pkgs) stdenv fetchurl;
};

htmlDocs = {
nixpkgsManual = jobs.manual;
nixosManual = (import ./nixos/release-small.nix {
nixpkgs = inputs.self;
}).nixos.manual.x86_64-linux;
};

packages = {
inherit (pkgs) hello nix fuse nlohmann_json boost firefox;
};


Carregando…
Cancelar
Guardar