mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-17 11:58:00 -06:00
22 lines
464 B
Nix
22 lines
464 B
Nix
{ inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
devShells.tome = pkgs.mkShell {
|
|
buildInputs = builtins.attrValues {
|
|
inherit (inputs.gel.packages."x86_64-linux") gel-cli gel-ls;
|
|
};
|
|
};
|
|
|
|
packages.tome = pkgs.stdenv.mkDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r dbschema $out/
|
|
cp gel.toml $out/
|
|
'';
|
|
name = "tome";
|
|
src = ./src;
|
|
};
|
|
};
|
|
}
|