1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-24 19:29:36 +01:00

fetchGit -> fetchTarball

This commit is contained in:
Eelco Dolstra 2019-04-19 14:41:59 +02:00
parent 3392f1b778
commit cbfdea6857
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ useClang ? false }:
with import (builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-19.03"; }) {};
with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz) {};
with import ./release-common.nix { inherit pkgs; };