2021-12-15 17:31:47 +01:00
|
|
|
# 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
|
2023-08-03 23:25:34 +02:00
|
|
|
csc -o $out/bin/mg -host -static ${./mg.scm}
|
2021-12-15 17:31:47 +01:00
|
|
|
'';
|
|
|
|
}
|