mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
Add flake outputs for the manuals
This commit is contained in:
parent
f16ca590c7
commit
2ba1f3c195
18
flake.nix
18
flake.nix
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user