From 3e3687b7009a55fea1aa71a1d121429291acf545 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 7 Mar 2024 20:27:09 +0100 Subject: [PATCH] Move aria2c to nativeBuildInputs --- shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell.nix b/shell.nix index 5ca6101..c19ac4d 100644 --- a/shell.nix +++ b/shell.nix @@ -6,6 +6,8 @@ pkgs.mkShell { (pkgs.python3.withPackages ( pyPkgs: [ pyPkgs.requests ])) + ]; + nativeBuildInputs = [ pkgs.aria2 ]; }