From 652e2ab6105462206c4100a4d0603895a2c4d5d0 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 26 Mar 2013 12:35:28 -0400 Subject: [PATCH] "Maintain" the tested job so I get notifications when it fails Signed-off-by: Shea Levy --- modules/system/boot/readonly-mountpoint.c | 2 +- release-combined.nix | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/modules/system/boot/readonly-mountpoint.c b/modules/system/boot/readonly-mountpoint.c index 605adfafabb0..27b666873821 100644 --- a/modules/system/boot/readonly-mountpoint.c +++ b/modules/system/boot/readonly-mountpoint.c @@ -8,7 +8,7 @@ int main(int argc, char ** argv) { fprintf(stderr, "Usage: %s PATH", argv[0]); exit(2); } - if(statvfs(argv[1], &stat) != 0) { + if (statvfs(argv[1], &stat) != 0) { perror("statvfs"); exit(3); } diff --git a/release-combined.nix b/release-combined.nix index 3a378123d2c9..dbd56b185249 100644 --- a/release-combined.nix +++ b/release-combined.nix @@ -3,7 +3,7 @@ , officialRelease ? false }: -let nixpkgs' = nixpkgs; in # urgh +let nixpkgs' = nixpkgs; pkgs = import {}; in # urgh rec { @@ -19,9 +19,12 @@ rec { supportedSystems = [ "x86_64-linux" "i686-linux" ]; }; - tested = (import { }).releaseTools.aggregate { + tested = pkgs.releaseTools.aggregate { name = "nixos-${nixos.tarball.version}"; - meta.description = "Release-critical builds for the NixOS unstable channel"; + meta = { + description = "Release-critical builds for the NixOS unstable channel"; + maintainers = [ pkgs.lib.maintainers.shlevy ]; + }; members = [ nixos.channel nixos.manual