Skip to content

Commit

Permalink
add devenv
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Jun 23, 2024
1 parent 950893f commit da8c371
Show file tree
Hide file tree
Showing 5 changed files with 263 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_url "https://raw.githubusercontent.com/cachix/devenv/95f329d49a8a5289d31e0982652f7058a189bfca/direnvrc" "sha256-d+8cBpDfDBj41inrADaJt+bDWhOktwslgoP5YiGJ1v0="

use devenv
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
/target
# Devenv
.devenv*
devenv.local.nix

# direnv
.direnv

# pre-commit
.pre-commit-config.yaml
161 changes: 161 additions & 0 deletions devenv.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
{
"nodes": {
"devenv": {
"locked": {
"dir": "src/modules",
"lastModified": 1719155972,
"owner": "cachix",
"repo": "devenv",
"rev": "52b3a67a2da7fbea30ee547d97d598f2f1ac83c4",
"treeHash": "73b342056d61bf331ad859c64e416396609fa610",
"type": "github"
},
"original": {
"dir": "src/modules",
"owner": "cachix",
"repo": "devenv",
"type": "github"
}
},
"fenix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"rust-analyzer-src": "rust-analyzer-src"
},
"locked": {
"lastModified": 1719124034,
"owner": "nix-community",
"repo": "fenix",
"rev": "952534c86a1e13ef78ccf00892246e33b222a69d",
"treeHash": "4368dc8d867e5fdc0ea2d1278e2b9084603be136",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "fenix",
"type": "github"
}
},
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1696426674,
"owner": "edolstra",
"repo": "flake-compat",
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
"treeHash": "2addb7b71a20a25ea74feeaf5c2f6a6b30898ecb",
"type": "github"
},
"original": {
"owner": "edolstra",
"repo": "flake-compat",
"type": "github"
}
},
"gitignore": {
"inputs": {
"nixpkgs": [
"pre-commit-hooks",
"nixpkgs"
]
},
"locked": {
"lastModified": 1709087332,
"owner": "hercules-ci",
"repo": "gitignore.nix",
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
"treeHash": "ca14199cabdfe1a06a7b1654c76ed49100a689f9",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "gitignore.nix",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1716977621,
"owner": "cachix",
"repo": "devenv-nixpkgs",
"rev": "4267e705586473d3e5c8d50299e71503f16a6fb6",
"treeHash": "6d9f1f7ca0faf1bc2eeb397c78a49623260d3412",
"type": "github"
},
"original": {
"owner": "cachix",
"ref": "rolling",
"repo": "devenv-nixpkgs",
"type": "github"
}
},
"nixpkgs-stable": {
"locked": {
"lastModified": 1718811006,
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "03d771e513ce90147b65fe922d87d3a0356fc125",
"treeHash": "ab837eb82b2b0afbb6568f2b27f214324699af3d",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-23.11",
"repo": "nixpkgs",
"type": "github"
}
},
"pre-commit-hooks": {
"inputs": {
"flake-compat": "flake-compat",
"gitignore": "gitignore",
"nixpkgs": [
"nixpkgs"
],
"nixpkgs-stable": "nixpkgs-stable"
},
"locked": {
"lastModified": 1718879355,
"owner": "cachix",
"repo": "pre-commit-hooks.nix",
"rev": "8cd35b9496d21a6c55164d8547d9d5280162b07a",
"treeHash": "246f2197feb48979ccc58af4cab0cfd0f5738645",
"type": "github"
},
"original": {
"owner": "cachix",
"repo": "pre-commit-hooks.nix",
"type": "github"
}
},
"root": {
"inputs": {
"devenv": "devenv",
"fenix": "fenix",
"nixpkgs": "nixpkgs",
"pre-commit-hooks": "pre-commit-hooks"
}
},
"rust-analyzer-src": {
"flake": false,
"locked": {
"lastModified": 1719057472,
"owner": "rust-lang",
"repo": "rust-analyzer",
"rev": "2fd803cc13dc11aeacaa6474e3f803988a7bfe1a",
"treeHash": "b2985d4d883af53da4152e353904110f71c1ef88",
"type": "github"
},
"original": {
"owner": "rust-lang",
"ref": "nightly",
"repo": "rust-analyzer",
"type": "github"
}
}
},
"root": "root",
"version": 7
}
82 changes: 82 additions & 0 deletions devenv.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
# https://devenv.sh/basics/
env.GREET = "magnetophon";

# https://devenv.sh/packages/
packages = with pkgs; [
git
# lldb
# cargo
# rustc
# rustfmt
# rust-analyzer
# clippy
# cargo-watch
# cargo-nextest
# cargo-expand # expand macros and inspect the output
# cargo-llvm-lines # count number of lines of LLVM IR of a generic function
# cargo-inspect
# cargo-criterion
# evcxr # make sure repl is in a gc-root
# cargo-play # quickly run a rust file that has a maint function

pkg-config

libjack2
alsa-lib

libGL
xorg.libXcursor
xorg.libX11 # libX11-xcb.so
xorg.xcbutilwm # libxcb-icccm.so

faust
python3
];

# https://devenv.sh/scripts/
scripts.hello.exec = "echo hello from $GREET";

enterShell = ''
hello
# git --version
# fish
'';

# https://devenv.sh/tests/
# enterTest = ''
# echo "Running tests"
# git --version | grep "2.42.0"
# '';

# https://devenv.sh/services/
# services.postgres.enable = true;

# https://devenv.sh/languages/
# https://devenv.sh/reference/options/#languagesrustchannel
languages.rust = {
enable = true;
channel = "nightly";
};

# https://devenv.sh/pre-commit-hooks/
pre-commit.hooks = {
shellcheck.enable = true;
clippy.enable = true;
# hunspell.enable = true;
alejandra.enable = true;
rustfmt.enable = true;
typos.enable = true;
};

# https://devenv.sh/processes/
# processes.ping.exec = "ping example.com";

# See full reference at https://devenv.sh/reference/options/
}
8 changes: 8 additions & 0 deletions devenv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
inputs:
nixpkgs:
url: github:cachix/devenv-nixpkgs/rolling
fenix:
url: github:nix-community/fenix
inputs:
nixpkgs:
follows: nixpkgs

0 comments on commit da8c371

Please sign in to comment.