aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-02 15:56:54 +0100
committerAkshay <[email protected]>2020-10-02 15:56:54 +0100
commit283fa45c517d6ed6e57db738769c92cac66dcb92 (patch)
treefad607ce199406540f4a134067cffc34c7d4d393
parenta71f7adf2fae9554f1107beceec20429362ae487 (diff)
add lorri init
-rw-r--r--.gitignore1
-rw-r--r--shell.nix12
2 files changed, 7 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index cc2aea0..f348a3d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
6**/*.rs.bk 6**/*.rs.bk
7 7
8result 8result
9.envrc
diff --git a/shell.nix b/shell.nix
index 2f3eec8..47e3bc4 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,11 +1,11 @@
1{ pkgs ? import <nixpkgs> {} }: 1{ pkgs ? import <nixpkgs> {} }:
2 2
3pkgs.mkShell { 3pkgs.mkShell {
4 name = "rust-env"; 4 name = "rust-env";
5 nativeBuildInputs = with pkgs; [ 5 nativeBuildInputs = with pkgs; [
6 rustc cargo 6 rustc cargo
7 ]; 7 ];
8 buildInputs = with pkgs; [ openssl pkgconfig ]; 8 buildInputs = with pkgs; [ openssl pkgconfig ];
9 9
10 RUST_BACKTRACE = 1; 10 RUST_BACKTRACE = 1;
11} 11}