Add raku devshell
This commit is contained in:
parent
0b262ef37d
commit
0273032031
41
devshells/raku.nix
Normal file
41
devshells/raku.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ withSystem, inputs, ... }:
|
||||
{
|
||||
perSystem =
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
inputs',
|
||||
...
|
||||
}:
|
||||
{
|
||||
devShells.raku =
|
||||
let
|
||||
rakudo_env = pkgs.buildEnv {
|
||||
name = "rakudo-env";
|
||||
paths = with pkgs; [
|
||||
rakudo
|
||||
zef
|
||||
];
|
||||
pathsToLink = [
|
||||
"/bin"
|
||||
"/lib"
|
||||
"/share"
|
||||
];
|
||||
};
|
||||
libPackages = with pkgs; [ readline70 ];
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs =
|
||||
with pkgs;
|
||||
[
|
||||
# Raku toolchain
|
||||
rakudo_env
|
||||
]
|
||||
++ libPackages;
|
||||
shellHook = ''
|
||||
export LD_LIBRARY_PATH=${lib.makeLibraryPath libPackages}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue