nix-prefetch-scripts: add bash to inputs

These scripts depend on bash via /bin/sh or /usr/bin/env bash.

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
FliegendeWurst
2024-12-09 14:35:26 +01:00
committed by Benno Fünfstück
co-authored by Sandro
parent 423832f411
commit 1b52efe8c2
@@ -1,12 +1,14 @@
{ lib, stdenv, makeWrapper, buildEnv
, breezy, coreutils, cvs, findutils, gawk, git, git-lfs, gnused, mercurial, nix, subversion
, bash, breezy, coreutils, cvs, findutils, gawk, git, git-lfs, gnused, mercurial, nix, subversion
}:
let mkPrefetchScript = tool: src: deps:
stdenv.mkDerivation {
name = "nix-prefetch-${tool}";
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ bash ];
dontUnpack = true;