Commit 1b52efe8 authored by FliegendeWurst's avatar FliegendeWurst Committed by Benno Fünfstück
Browse files

nix-prefetch-scripts: add bash to inputs



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

Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent 423832f4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
{ 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;