Update flake interface

This commit is contained in:
Eelco Dolstra
2020-02-05 23:14:32 +01:00
parent 2ba1f3c195
commit 63bcbc19cd
+4 -4
View File
@@ -1,15 +1,15 @@
{ {
name = "nixpkgs"; name = "nixpkgs";
epoch = 201906; epoch = 201909;
description = "A collection of packages for the Nix package manager"; description = "A collection of packages for the Nix package manager";
outputs = inputs: outputs = { self }:
let let
pkgs = import ./. { system = "x86_64-linux"; }; pkgs = import ./. { system = "x86_64-linux"; };
jobs = import ./pkgs/top-level/release.nix { jobs = import ./pkgs/top-level/release.nix {
nixpkgs = inputs.self; nixpkgs = self;
}; };
in in
{ {
@@ -26,7 +26,7 @@
htmlDocs = { htmlDocs = {
nixpkgsManual = jobs.manual; nixpkgsManual = jobs.manual;
nixosManual = (import ./nixos/release-small.nix { nixosManual = (import ./nixos/release-small.nix {
nixpkgs = inputs.self; nixpkgs = self;
}).nixos.manual.x86_64-linux; }).nixos.manual.x86_64-linux;
}; };