47ace7b0af
`fd "\.nix" pkgs/tools/nix | xargs rg "strictDeps" --files-without-match | xargs rg "buildRust|buildGo|buildPyt|buildNim" --files-without-match | xargs vim -p` checked with Artturin/diffing
48 lines
980 B
Nix
48 lines
980 B
Nix
{ stdenv, lib, coreutils, findutils, gnugrep, darwin, bash
|
|
# Avoid having GHC in the build-time closure of all NixOS configurations
|
|
, doCheck ? false, shellcheck
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nix-info";
|
|
src = ./info.sh;
|
|
|
|
path = lib.makeBinPath ([
|
|
coreutils findutils gnugrep
|
|
] ++ (lib.optionals stdenv.isDarwin [ darwin.DarwinTools ]));
|
|
is_darwin = if stdenv.isDarwin then "yes" else "no";
|
|
|
|
sandboxtest = ./sandbox.nix;
|
|
relaxedsandboxtest = ./relaxedsandbox.nix;
|
|
multiusertest = ./multiuser.nix;
|
|
|
|
unpackCmd = ''
|
|
mkdir nix-info
|
|
cp $src ./nix-info/nix-info
|
|
'';
|
|
|
|
buildPhase = ''
|
|
substituteAllInPlace ./nix-info
|
|
'';
|
|
|
|
inherit doCheck;
|
|
strictDeps = true;
|
|
nativeCheckInputs = [ shellcheck ];
|
|
buildInputs = [ bash ];
|
|
|
|
checkPhase = ''
|
|
shellcheck ./nix-info
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ./nix-info $out/bin/nix-info
|
|
'';
|
|
|
|
preferLocalBuild = true;
|
|
|
|
meta = {
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|