notes and framework for nix-shell env

This commit is contained in:
APEX FIGHT
2025-10-31 21:39:18 -04:00
parent 359a34ddc5
commit a884e64fe0
2 changed files with 17 additions and 0 deletions

4
src/notes.txt Normal file
View File

@@ -0,0 +1,4 @@
VERSION = "140.4.0esr"
LINK = ftp.mozilla.org/pub/firefox/releases/$VERSION/source/firefox-$VERSION.source.tar.xz/
// (add .asc for hash)

13
src/shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
];
shellHook = ''
'';
}