From fdd88b2c64c167e91a796974d6e80de187bb4b95 Mon Sep 17 00:00:00 2001 From: Astro <astro@spaceboyz.net> Date: Tue, 20 Aug 2019 20:42:57 +0200 Subject: [PATCH] fix(nix): fix build --- default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index b3dc9eee..a1f33c3f 100644 --- a/default.nix +++ b/default.nix @@ -21,6 +21,7 @@ in stdenv.mkDerivation rec { meson ninja py + py.pkgs.pillow ]; src = ./.; buildCommand = '' @@ -33,7 +34,7 @@ in stdenv.mkDerivation rec { chmod -R +w . # The nix sandbox does not have /usr/bin/env bash, patch things up. - for f in lib/micropython/*.sh; do + for f in lib/micropython/*.sh tools/*.sh; do patchShebangs "$f" done -- GitLab