Skip to content

Commit 1b52efe

Browse files
FliegendeWurstSuperSandro2000
authored andcommitted
nix-prefetch-scripts: add bash to inputs
These scripts depend on bash via /bin/sh or /usr/bin/env bash. Co-authored-by: Sandro <[email protected]>
1 parent 423832f commit 1b52efe

File tree

1 file changed

+3
-1
lines changed
  • pkgs/tools/package-management/nix-prefetch-scripts

1 file changed

+3
-1
lines changed

pkgs/tools/package-management/nix-prefetch-scripts/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{ lib, stdenv, makeWrapper, buildEnv
2-
, breezy, coreutils, cvs, findutils, gawk, git, git-lfs, gnused, mercurial, nix, subversion
2+
, bash, breezy, coreutils, cvs, findutils, gawk, git, git-lfs, gnused, mercurial, nix, subversion
33
}:
44

55
let mkPrefetchScript = tool: src: deps:
66
stdenv.mkDerivation {
77
name = "nix-prefetch-${tool}";
88

9+
strictDeps = true;
910
nativeBuildInputs = [ makeWrapper ];
11+
buildInputs = [ bash ];
1012

1113
dontUnpack = true;
1214

0 commit comments

Comments
 (0)