quick & dirty fix for flake inputs

This commit is contained in:
Suzanne Soy 2023-11-16 14:07:56 +00:00
parent 9631a58d1b
commit c3a12f2cc8

View File

@ -7,7 +7,7 @@
pkgs.stdenv.mkDerivation {
name = "update-directory-hashes";
src = self;
buildInputs = with pkgs; [kubo jq nodejs-slim];
propagatedBuildInputs = with pkgs; [kubo jq nodejs-slim]; # TODO: actually fixup the script
buildPhase = ''
cp update_directory_hashes.sh "$out"
'';