From 3cc8265a56a6af2988c42a04587000c7953d7ff5 Mon Sep 17 00:00:00 2001 From: coolneng Date: Sat, 13 Nov 2021 12:50:20 +0100 Subject: [PATCH] Add dependencies --- flake.lock | 41 +++++++++++++++++++++++++++++++++++++++++ shell.nix | 8 ++------ 2 files changed, 43 insertions(+), 6 deletions(-) create mode 100644 flake.lock diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..065cbd5 --- /dev/null +++ b/flake.lock @@ -0,0 +1,41 @@ +{ + "nodes": { + "flake-utils": { + "locked": { + "lastModified": 1634851050, + "narHash": "sha256-N83GlSGPJJdcqhUxSCS/WwW5pksYf3VP1M13cDRTSVA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "c91f3de5adaf1de973b797ef7485e441a65b8935", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1636803232, + "narHash": "sha256-QD3B6q4NyT9gMaHoejD01N5musSfncawOkyX353DeGY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "83d501e64ce23aa383e56fead823c3c132e6b18e", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/shell.nix b/shell.nix index 81c823e..a3f2639 100644 --- a/shell.nix +++ b/shell.nix @@ -1,9 +1,5 @@ -{ pkgs ? import {} }: +{ pkgs ? import { } }: with pkgs; -mkShell { - buildInputs = [ - - ]; -} +mkShell { buildInputs = [ python39 python39Packages.beautifulsoup4 ]; }