From 69eb6fe0a6ac34cf412bd6ba23dd11c5b7fbd417 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Tue, 27 Apr 2021 00:34:17 +0200 Subject: 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. --- server/shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 server/shell.nix (limited to 'server/shell.nix') 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 { 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 + ]; + } -- cgit v1.2.3