a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
23 lines
470 B
Nix
23 lines
470 B
Nix
# magrathea helps you build planets
|
|
#
|
|
# it is a tool for working with monorepos in the style of tvl's depot
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "magrathea";
|
|
src = ./.;
|
|
dontInstall = true;
|
|
|
|
nativeBuildInputs = [ pkgs.chicken ];
|
|
buildInputs = with pkgs.chickenPackages.chickenEggs; [
|
|
matchable
|
|
srfi-13
|
|
];
|
|
|
|
propagatedBuildInputs = [ pkgs.git ];
|
|
|
|
buildPhase = ''
|
|
mkdir -p $out/bin
|
|
csc -o $out/bin/mg -static ${./mg.scm}
|
|
'';
|
|
}
|