From e24af8437a690ef09c3145ea9f835197a60dd1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 21 Jul 2022 10:35:49 +0200 Subject: nixShells: provide default shell with my default configuration --- devShells/c.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'devShells/c.nix') diff --git a/devShells/c.nix b/devShells/c.nix index 949b291..c1b5553 100644 --- a/devShells/c.nix +++ b/devShells/c.nix @@ -1,19 +1,20 @@ -{ nixpkgs, shellrc, system }: +{ system, nixpkgs, default }: let pkgs = nixpkgs.legacyPackages.${system}; in pkgs.mkShell { packages = (with pkgs; [ clang-tools - gcc gdb + gcc gdb pkg-config cppcheck flawfinder bear meson lcov massif-visualizer ]); inputsFrom = with pkgs; [ check + curl - shellrc.packages.${system}.default + default ]; meta.platforms = nixpkgs.lib.platforms.linux; } -- cgit v1.2.3