2020-02-10 15:36:53 +00:00
|
|
|
# Experimental flake interface to Nixpkgs.
|
|
|
|
# See https://github.com/NixOS/rfcs/pull/49 for details.
|
2019-02-11 11:27:17 +00:00
|
|
|
{
|
|
|
|
description = "A collection of packages for the Nix package manager";
|
|
|
|
|
2019-08-30 10:48:43 +01:00
|
|
|
outputs = { self }:
|
2019-06-19 11:43:26 +01:00
|
|
|
let
|
|
|
|
jobs = import ./pkgs/top-level/release.nix {
|
2019-08-30 10:48:43 +01:00
|
|
|
nixpkgs = self;
|
2019-06-19 11:43:26 +01:00
|
|
|
};
|
2019-10-15 17:17:21 +01:00
|
|
|
|
2019-09-13 17:26:38 +01:00
|
|
|
lib = import ./lib;
|
2019-10-15 17:17:21 +01:00
|
|
|
|
2022-11-08 18:38:35 +00:00
|
|
|
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
|
2019-06-19 11:43:26 +01:00
|
|
|
in
|
2019-02-11 11:27:17 +00:00
|
|
|
{
|
2020-07-23 16:36:45 +01:00
|
|
|
lib = lib.extend (final: prev: {
|
2022-01-02 13:11:21 +00:00
|
|
|
|
|
|
|
nixos = import ./nixos/lib { lib = final; };
|
|
|
|
|
2021-12-17 14:30:32 +00:00
|
|
|
nixosSystem = args:
|
2022-06-09 10:38:30 +01:00
|
|
|
import ./nixos/lib/eval-config.nix (
|
|
|
|
args // {
|
|
|
|
modules = args.modules ++ [{
|
|
|
|
system.nixos.versionSuffix =
|
|
|
|
".${final.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}.${self.shortRev or "dirty"}";
|
|
|
|
system.nixos.revision = final.mkIf (self ? rev) self.rev;
|
|
|
|
}];
|
|
|
|
} // lib.optionalAttrs (! args?system) {
|
|
|
|
# Allow system to be set modularly in nixpkgs.system.
|
|
|
|
# We set it to null, to remove the "legacy" entrypoint's
|
|
|
|
# non-hermetic default.
|
|
|
|
system = null;
|
|
|
|
}
|
|
|
|
);
|
2020-07-23 16:36:45 +01:00
|
|
|
});
|
2019-02-11 11:27:17 +00:00
|
|
|
|
2020-02-10 15:25:33 +00:00
|
|
|
checks.x86_64-linux.tarball = jobs.tarball;
|
2019-05-29 20:21:56 +01:00
|
|
|
|
2019-06-19 11:43:26 +01:00
|
|
|
htmlDocs = {
|
|
|
|
nixpkgsManual = jobs.manual;
|
|
|
|
nixosManual = (import ./nixos/release-small.nix {
|
2019-08-30 10:48:43 +01:00
|
|
|
nixpkgs = self;
|
2019-06-19 11:43:26 +01:00
|
|
|
}).nixos.manual.x86_64-linux;
|
|
|
|
};
|
|
|
|
|
2022-10-26 19:03:19 +01:00
|
|
|
# The "legacy" in `legacyPackages` doesn't imply that the packages exposed
|
|
|
|
# through this attribute are "legacy" packages. Instead, `legacyPackages`
|
|
|
|
# is used here as a substitute attribute name for `packages`. The problem
|
|
|
|
# with `packages` is that it makes operations like `nix flake show
|
|
|
|
# nixpkgs` unusably slow due to the sheer number of packages the Nix CLI
|
2022-10-28 19:31:47 +01:00
|
|
|
# needs to evaluate. But when the Nix CLI sees a `legacyPackages`
|
|
|
|
# attribute it displays `omitted` instead of evaluating all packages,
|
|
|
|
# which keeps `nix flake show` on Nixpkgs reasonably fast, though less
|
|
|
|
# information rich.
|
2022-01-27 11:53:30 +00:00
|
|
|
legacyPackages = forAllSystems (system: import ./. { inherit system; });
|
2019-09-13 18:01:23 +01:00
|
|
|
|
|
|
|
nixosModules = {
|
2022-10-06 15:52:38 +01:00
|
|
|
notDetected = ./nixos/modules/installer/scan/not-detected.nix;
|
2019-09-13 18:01:23 +01:00
|
|
|
};
|
2019-02-11 11:27:17 +00:00
|
|
|
};
|
|
|
|
}
|