about summary refs log tree commit diff
path: root/tools/depot-build.nix
blob: 62b4c7fc4476cfd96d399528d9423a7286beed9f (plain) (blame)
1
2
3
4
5
6
7
8
# 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)
''