From fff2301ad6ffaba1bc3176be70c1146b841a58f9 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Thu, 28 Nov 2024 01:16:26 -0500 Subject: [PATCH] Revert "Update code snippets" This reverts commit 43ed470d7ec17accf2a43da1f23fe34e400ac4b8. --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c89bf05..b76844d 100644 --- a/README.md +++ b/README.md @@ -57,9 +57,7 @@ pkgs = import nixpkgs { Use the binary as derivation input for creating packages or shells: ```nix -pkgs.mkShell { - buildInputs = [ pkgs.iecs ]; -}; +buildInputs = [ pkgs.iecs ]; ``` #### Using it as a package @@ -67,9 +65,7 @@ pkgs.mkShell { Use the binary as derivation input for creating packages or shells: ```nix -pkgs.mkShell { - buildInputs = [ iecs.packages.${system}.default ]; -}; +buildInputs = [ iecs.packages.${system}.default ]; ```