nixpkgs/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.6 KiB
Nix
Raw Normal View History

2020-02-10 18:36:53 +03:00
# Experimental flake interface to Nixpkgs.
# See https://github.com/NixOS/rfcs/pull/49 for details.
2019-02-11 14:27:17 +03:00
{
description = "A collection of packages for the Nix package manager";
2019-08-30 12:48:43 +03:00
outputs = { self }:
2019-06-19 13:43:26 +03:00
let
jobs = import ./pkgs/top-level/release.nix {
2019-08-30 12:48:43 +03:00
nixpkgs = self;
2019-06-19 13:43:26 +03:00
};
2019-10-15 19:17:21 +03:00
lib = import ./lib;
2019-10-15 19:17:21 +03:00
forAllSystems = f: lib.genAttrs lib.systems.flakeExposed (system: f system);
2019-10-15 19:17:21 +03:00
2019-06-19 13:43:26 +03:00
in
2019-02-11 14:27:17 +03:00
{
lib = lib.extend (final: prev: {
2022-01-02 16:11:21 +03:00
nixos = import ./nixos/lib { lib = final; };
nixosSystem = args:
2022-06-09 12:38:30 +03: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;
}
);
});
2019-02-11 14:27:17 +03:00
2020-02-10 18:25:33 +03:00
checks.x86_64-linux.tarball = jobs.tarball;
2019-05-29 22:21:56 +03:00
2019-06-19 13:43:26 +03:00
htmlDocs = {
nixpkgsManual = jobs.manual;
nixosManual = (import ./nixos/release-small.nix {
2019-08-30 12:48:43 +03:00
nixpkgs = self;
2019-06-19 13:43:26 +03:00
}).nixos.manual.x86_64-linux;
};
legacyPackages = forAllSystems (system: import ./. { inherit system; });
2019-09-13 20:01:23 +03:00
nixosModules = {
2020-02-10 18:25:33 +03:00
notDetected = import ./nixos/modules/installer/scan/not-detected.nix;
2019-09-13 20:01:23 +03:00
};
2019-02-11 14:27:17 +03:00
};
}