forked from jmug/stoatchat
docs: add some notes on overrides; fix defaults
This commit is contained in:
20
default.nix
20
default.nix
@@ -1,26 +1,10 @@
|
||||
let
|
||||
# Pinned nixpkgs, deterministic. Last updated: 28-07-2024.
|
||||
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/9b34ca580417e1ebc56c4df57d8b387dad686665.tar.gz")) {};
|
||||
|
||||
# Rolling updates, not deterministic.
|
||||
# pkgs = import (fetchTarball("channel:nixpkgs-unstable")) {};
|
||||
in pkgs.mkShell {
|
||||
name = "revoltEnv";
|
||||
|
||||
# LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
|
||||
# pkgs.gcc-unwrapped
|
||||
# pkgs.zlib
|
||||
# pkgs.glib
|
||||
# pkgs.libGL
|
||||
# ];
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.mkShell rec {
|
||||
buildInputs = [
|
||||
# Tools
|
||||
pkgs.git
|
||||
|
||||
# Database
|
||||
# pkgs.mongodb
|
||||
|
||||
# Cargo
|
||||
pkgs.cargo
|
||||
pkgs.cargo-nextest
|
||||
|
||||
Reference in New Issue
Block a user