From f8952bb9b5762e992460d2de7ac734980a2dc676 Mon Sep 17 00:00:00 2001 From: Meghan Date: Fri, 14 Jan 2022 23:40:11 -0800 Subject: [PATCH] custom nix repo not needed --- Development-with-nix.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Development-with-nix.md b/Development-with-nix.md index ea7be01..c5fcc54 100644 --- a/Development-with-nix.md +++ b/Development-with-nix.md @@ -2,14 +2,7 @@ Here is a sample `shell.nix` for building/developing zig. ```nix -let - nixpkgs = builtins.fetchTarball { - # nixpkgs-unstable (2021-10-28) - url = "https://github.com/NixOS/nixpkgs/archive/22a500a3f87bbce73bd8d777ef920b43a636f018.tar.gz"; - sha256 = "1rqp9nf45m03mfh4x972whw2gsaz5x44l3dy6p639ib565g24rmh"; - }; -in -{ pkgs ? import nixpkgs { } }: +with import {}; pkgs.mkShell { nativeBuildInputs = with pkgs; [