Removed unused override. Added packages.base-packages. Added FIXMEs
This commit is contained in:
parent
7406cece2d
commit
eb7b2a57b2
6 changed files with 18 additions and 6 deletions
|
@ -20,7 +20,17 @@
|
|||
./rash
|
||||
];
|
||||
};
|
||||
all-packages = wrapped.config.build.packages;
|
||||
base-packages = pkgs.symlinkJoin {
|
||||
name = "settei-base";
|
||||
paths = with all-packages; [
|
||||
rash
|
||||
helix
|
||||
];
|
||||
};
|
||||
in {
|
||||
inherit (wrapped.config.build) packages;
|
||||
packages = all-packages // {
|
||||
inherit base-packages;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -40,9 +40,10 @@
|
|||
buildInputs = with pkgs; [readline];
|
||||
};
|
||||
in {
|
||||
basePackage = pkgs.writeShellScriptBin "rash" ''
|
||||
basePackage = pkgs.writeShellScriptBin "rash-repl" ''
|
||||
exec "${racket-with-libs}/bin/rash-repl" "$@"
|
||||
'';
|
||||
# TODO: Shell shouldn't overwrite this variable. Probably
|
||||
env.XDG_CONFIG_HOME = {
|
||||
value = pkgs.linkFarm "rash-config" {
|
||||
"rash/rashrc" = ./rashrc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue