From 86c824ab593027e950e1a866cafc6a509c4fb4b3 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 10 Oct 2020 10:04:50 +0200 Subject: [PATCH] Use for zola in shell.nix --- shell.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index 6dd2b5b..c626ce4 100644 --- a/shell.nix +++ b/shell.nix @@ -1,12 +1,10 @@ -{ pkgs ? import {} -, unstable ? import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {} -}: +{ pkgs ? import {} }: pkgs.mkShell { nativeBuildInputs = with pkgs; [ python38 python38Packages.mutagen - unstable.zola + zola unzip wget ];