c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
8 lines
310 B
Nix
8 lines
310 B
Nix
# Utility script for building any arbitrary depot path in its folder.
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellScriptBin "depot-build" ''
|
|
TARGET=$(git rev-parse --show-prefix | sed 's|/$||')
|
|
echo "Building //$TARGET"
|
|
nix-build -A $(echo $TARGET | sed 's|/|.|g') $(${pkgs.git}/bin/git rev-parse --show-toplevel)
|
|
''
|