From 1a899890ac388bec208c4ca795698c3166c2686a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 Jul 2018 21:19:10 +0200 Subject: [PATCH] Use nixUnstable --- release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.nix b/release.nix index ff0c750d..b62fd312 100644 --- a/release.nix +++ b/release.nix @@ -1,4 +1,4 @@ -{ hydraSrc ? { outPath = ./.; revCount = 1234; rev = "abcdef"; } +{ hydraSrc ? builtins.fetchGit ./. , nixpkgs ? builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-18.03"; } , officialRelease ? false , shell ? false @@ -42,7 +42,7 @@ rec { let - nix = pkgs.nixStable2 or pkgs.nix; + nix = pkgs.nixUnstable or pkgs.nix; perlDeps = buildEnv { name = "hydra-perl-deps";