From 0ac30eea3e36c32346aff947c51449abc0fd8d39 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 13 Jun 2022 13:30:32 +0200 Subject: [PATCH] Add OGP devshell --- flake.nix | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/flake.nix b/flake.nix index dbed9f57..04276ced 100644 --- a/flake.nix +++ b/flake.nix @@ -323,25 +323,9 @@ }) ]; }; - scriptingtalen-project = pkgs.devshell.mkShell { + objectgericht-project = pkgs.devshell.mkShell { name = "Scriptingtalen project"; - packages = [ (pkgs.python3.withPackages (ps: with ps; [ beautifulsoup4 requests ])) ]; - }; - Rocket = pkgs.devshell.mkShell { - name = "Rocket"; - imports = [ "${devshell}/extra/language/c.nix" ]; - env = [ - { name = "PQ_LIB_DIR"; value = "${pkgs.postgresql.lib}/lib"; } - ]; - packages = with pkgs; [ - binutils - (rust-bin.nightly.latest.default.override { extensions = [ "rust-analyzer-preview" "rust-src" ]; }) - ]; - language.c = { - compiler = pkgs.gcc; - includes = [ pkgs.postgresql.lib pkgs.sqlite pkgs.libmysqlclient pkgs.openssl ]; - libraries = [ pkgs.postgresql.lib pkgs.sqlite pkgs.libmysqlclient pkgs.openssl ]; - }; + packages = with pkgs; [ openssl maven openjdk ]; }; }; };