daml/ci/azure-cleanup/default.nix
Moritz Kiefer 61eace44fe
Switch to nixpkgs-unstable (#1921)
The main reason for doing this is that it saves us the trouble of
having to backport changes, e.g., a newer MacOS toolchain.
2019-06-27 18:47:42 +02:00

15 lines
261 B
Nix

{ system ? builtins.currentSystem }:
let
pkgs = import (import ../../nix/nixpkgs) {
inherit system;
config = {};
overlays = [];
};
azure-devops = pkgs.callPackage ./azure-devops.nix { };
in
pkgs.mkShell {
buildInputs = [ azure-devops ];
}