diff options
author | stuebinm | 2021-04-27 00:34:17 +0200 |
---|---|---|
committer | stuebinm | 2021-04-27 00:34:17 +0200 |
commit | 69eb6fe0a6ac34cf412bd6ba23dd11c5b7fbd417 (patch) | |
tree | b81f466e459ee6384b4c13c816094013cd0df7f9 /server/shell.nix | |
parent | 91efe78471f080eb58ffdde2125c59cd76d1f62c (diff) |
server: replace guile with rust (init)
this is just a quick barebones server, which doesn't really do yet what
it is supposed to or what the guile version did.
Diffstat (limited to 'server/shell.nix')
-rw-r--r-- | server/shell.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/shell.nix b/server/shell.nix new file mode 100644 index 0000000..1af9bbb --- /dev/null +++ b/server/shell.nix @@ -0,0 +1,14 @@ +let + moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); + nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; }; +in + with nixpkgs; + stdenv.mkDerivation { + name = "moz_overlay_shell"; + buildInputs = [ + #nixpkgs.latest.rustChannels.nightly.rust + nixpkgs.latest.rustChannels.stable.rust + openssl pkg-config + rls cargo + ]; + } |