1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-07 01:26:19 +02:00
github.com_the-nix-way_dev-.../README.md

401 lines
12 KiB
Markdown
Raw Permalink Normal View History

2022-07-12 01:17:54 +02:00
# Nix flake templates for easy dev environments
2022-07-31 19:53:02 +02:00
[![built with nix](https://builtwithnix.org/badge.svg)](https://builtwithnix.org)
2022-07-29 02:22:04 +02:00
To initialize (where `${ENV}` is listed in the table below):
```shell
nix flake init --template github:the-nix-way/dev-templates#${ENV}
```
Here's an example (for the [`rust`](./rust) template):
```shell
2022-07-31 17:05:20 +02:00
# Initialize in the current project
2022-07-29 02:22:04 +02:00
nix flake init --template github:the-nix-way/dev-templates#rust
2022-07-31 17:05:20 +02:00
# Create a new project
nix flake new --template github:the-nix-way/dev-templates#rust ${NEW_PROJECT_DIRECTORY}
2022-07-29 02:22:04 +02:00
```
2022-07-31 17:05:20 +02:00
## How to use the templates
Once your preferred template has been initialized, you can use the provided shell in two ways:
1. If you have [`nix-direnv`][nix-direnv] installed, you can initialize the environment by running `direnv allow`.
2. If you don't have `nix-direnv` installed, you can run `nix develop` to open up the Nix-defined shell.
## Available templates
2022-07-29 02:22:04 +02:00
2023-03-06 12:28:29 +01:00
| Language/framework/tool | Template |
2023-10-16 02:22:58 +02:00
| :----------------------- | :---------------------------- |
2024-03-24 03:45:43 +01:00
| [C]/[C++] | [`c-cpp`](./c-cpp/) |
2023-03-06 12:28:29 +01:00
| [Clojure] | [`clojure`](./clojure/) |
2023-05-25 21:23:06 +02:00
| [C#][csharp] | [`csharp`](./csharp/) |
2023-03-06 12:28:29 +01:00
| [Cue] | [`cue`](./cue/) |
| [Dhall] | [`dhall`](./dhall/) |
| [Elixir] | [`elixir`](./elixir/) |
| [Elm] | [`elm`](./elm/) |
| Empty (change at will) | [`empty`](./empty) |
2023-03-06 12:28:29 +01:00
| [Gleam] | [`gleam`](./gleam/) |
| [Go] | [`go`](./go/) |
| [Hashicorp] tools | [`hashi`](./hashi/) |
2023-10-16 02:22:58 +02:00
| [Haxe] | [`haxe`](./haxe/) |
2023-03-06 12:28:29 +01:00
| [Java] | [`java`](./java/) |
| [Kotlin] | [`kotlin`](./kotlin/) |
2023-07-14 00:53:11 +02:00
| [LaTeX] | [`latex`](./latex/) |
2023-03-06 12:28:29 +01:00
| [Nickel] | [`nickel`](./nickel/) |
| [Nim] | [`nim`](./nim/) |
| [Nix] | [`nix`](./nix/) |
| [Node.js][node] | [`node`](./node/) |
| [OCaml] | [`ocaml`](./ocaml/) |
| [Open Policy Agent][opa] | [`opa`](./opa) |
| [PHP] | [`php`](./php/) |
2022-12-21 16:04:57 +01:00
| [Protobuf] | [`protobuf`](./protobuf/) |
2023-07-14 00:53:11 +02:00
| [Pulumi] | [`pulumi`](./pulumi/) |
2022-12-21 16:04:57 +01:00
| [Purescript] | [`purescript`](./purescript/) |
| [Ruby] | [`ruby`](./ruby/) |
| [Rust] | [`rust`](./rust/) |
| [Scala] | [`scala`](./scala/) |
| [Shell] | [`shell`](./shell/) |
2024-02-02 17:23:47 +01:00
| [Vlang] | [`vlang`](./vlang/) |
2022-12-21 16:04:57 +01:00
| [Zig] | [`zig`](./zig/) |
2022-07-29 02:17:49 +02:00
2022-07-31 17:05:20 +02:00
## Template contents
2022-07-31 17:13:00 +02:00
The sections below list what each template includes. In all cases, you're free to add and remove packages as you see fit; the templates are just boilerplate.
2022-07-31 17:05:20 +02:00
### [`c-cpp`](./c-cpp/)
- [clang-tools] 17.0.6
- [cmake] 3.28.3
- [codespell] 2.2.6
- [conan] 2.0.17
- [cppcheck] 2.13.4
- [doxygen] 1.10.0
- [gdb] 14.1
- [gtest] 1.12.1
- [lcov] 1.0
- [vcpkg]
- [vcpkg-tool]
2022-08-04 10:19:10 +02:00
### [`clojure`](./clojure/)
2023-07-14 02:52:19 +02:00
- [Clojure] 1.11.1.1347
2022-08-04 10:26:16 +02:00
- [Boot] 2.8.3
2023-07-14 02:52:19 +02:00
- [Leiningen] 2.10.0
2022-08-04 10:19:10 +02:00
2023-05-25 21:23:06 +02:00
### [`csharp`](./csharp/)
2023-07-14 02:52:19 +02:00
- [dotnet] sdk 7 (7.0.305)
2023-05-25 21:23:06 +02:00
- [omnisharp-roslyn]
2023-07-14 02:52:19 +02:00
- [Mono] 6.12.0.182
- [msbuild] 16.10.1
2023-05-25 21:23:06 +02:00
2022-07-31 20:23:05 +02:00
### [`cue`](./cue/)
2023-07-14 02:52:19 +02:00
- [Cue] 0.5.0
2022-07-31 20:23:05 +02:00
2022-07-31 17:13:00 +02:00
### [`dhall`](./dhall)
2022-07-31 17:05:20 +02:00
2023-07-14 02:52:19 +02:00
- [Dhall] 1.41.2
2022-08-05 11:10:37 +02:00
- [dhall-bash]
- [dhall-docs]
- [dhall-json]
- [dhall-lsp-server]
- [dhall-nix]
- [dhall-nixpkgs]
- [dhall-openapi]
- [dhall-toml]
- [dhall-yaml]
2022-07-31 17:05:20 +02:00
2022-07-31 17:13:00 +02:00
### [`elixir`](./elixir/)
2023-07-14 02:52:19 +02:00
- [Elixir] 1.14.5, including [mix] and [IEx]
2022-08-02 12:57:37 +02:00
- [gigalixir] (Linux only)
2022-07-31 17:13:00 +02:00
2022-07-31 21:10:16 +02:00
### [`elm`](./elm/)
- [Elm] 0.19.1
2023-07-14 02:52:19 +02:00
- [elm2nix]
2022-07-31 21:10:16 +02:00
### [Empty](./empty/)
A dev template that's fully customizable.
2022-07-31 17:13:00 +02:00
### [`gleam`](./gleam/)
2023-07-14 02:52:19 +02:00
- [Gleam] 0.30.0
2022-07-31 17:13:00 +02:00
### [`go`](./go/)
2022-07-31 18:02:44 +02:00
2023-07-14 02:52:19 +02:00
- [Go] 1.20.5
2022-07-31 18:02:44 +02:00
- Standard Go tools ([goimports], [godoc], and others)
- [golangci-lint]
2022-07-31 18:11:52 +02:00
### [`hashi`](./hashi/)
2023-07-14 02:52:19 +02:00
- [Packer] 1.8.6
- [Terraform] 1.5.2
- [Nomad] 1.4.6
- [Vault] 1.13.3
2022-07-31 18:20:01 +02:00
- [nomad-autoscaler] 0.3.6-dev
- [nomad-pack] 0.0.1-techpreview.3
2023-07-14 02:52:19 +02:00
- [levant] 0.3.2-dev
2022-07-31 18:20:01 +02:00
- [damon]
2023-07-14 02:52:19 +02:00
- [Terragrunt] 0.45.13
- [tflint] 0.46.1
2022-07-31 18:11:52 +02:00
2022-08-01 00:00:58 +02:00
### [`haskell`](./haskell/)
2023-07-14 02:52:19 +02:00
- [GHC][haskell] 9.2.8
- [cabal] 3.10.1.0
2022-08-01 00:00:58 +02:00
2023-10-16 02:22:58 +02:00
### [`haxe`](./haxe/)
- [Haxe] 4.2.5
2022-07-31 17:59:22 +02:00
### [`java`](./java)
2023-07-14 02:52:19 +02:00
- [Java] 20.0.1+9
- [Maven] 3.9.2
- [Gradle] 9.0.1
2024-04-15 20:28:42 +02:00
- [jdtls] 1.31.0
2022-07-31 17:59:22 +02:00
### [`kotlin`](./kotlin/)
2023-07-14 02:52:19 +02:00
- [Kotlin] 1.9.0
- [Gradle] 8.0.1
2022-07-31 17:59:22 +02:00
### [`latex`](./latex/)
- [texlive]
- [tectonic]
- [texlab]
2022-08-01 03:04:16 +02:00
### [`nickel`](./nickel/)
2022-08-03 08:35:52 +02:00
- [Nickel] 0.2.0
2022-08-01 03:04:16 +02:00
2022-07-31 21:01:58 +02:00
### [`nim`](./nim)
2023-07-14 02:52:19 +02:00
- [Nim] 1.6.14
- [nimble] 0.14.2
2022-07-31 21:01:58 +02:00
2022-07-31 17:59:22 +02:00
### [`nix`](./nix/)
2023-07-14 02:52:19 +02:00
- [Cachix] 1.6
- [dhall-to-nix] 1.1.25
- [lorri] 1.6.0
- [niv] 0.2.22
- [nixfmt] 0.5.0
- [statix] 0.5.6
2022-07-31 17:59:22 +02:00
- [vulnix]
### [`node`](./node/)
2023-07-14 02:52:19 +02:00
- [Node.js][node] 18.16.1
- [npm] 9.5.1
- [pnpm] 8.6.6
2022-07-31 17:59:22 +02:00
- [Yarn] 1.22.19
2022-08-02 12:50:59 +02:00
- [node2nix] 1.11.1
2022-07-31 17:59:22 +02:00
2022-08-13 17:10:46 +02:00
### [`ocaml`](./ocaml/)
2023-07-14 02:52:19 +02:00
- [OCaml] 4.14.1
- [Dune] 3.9.1
- [odoc] 2.2.0
- [ocamlformat] 0.25.1
2022-08-13 17:10:46 +02:00
2022-07-31 21:59:08 +02:00
### [`opa`](./opa/)
2023-07-14 02:52:19 +02:00
- [Open Policy Agent][opa] 0.54.0
- [Conftest] 0.44.0
2022-07-31 21:59:08 +02:00
2022-09-28 09:34:13 +02:00
### [`php`](./php/)
2023-07-14 02:52:19 +02:00
- [PHP] 8.2.8
- [Composer] 2.5.8
2022-09-28 09:34:13 +02:00
2022-07-31 17:59:22 +02:00
### [`protobuf`](./protobuf/)
2023-07-14 02:52:19 +02:00
- The [Buf CLI][buf] 1.23.1
- [protoc][protobuf] 3.21.12
2022-07-31 17:59:22 +02:00
2023-07-14 00:53:11 +02:00
### [`pulumi`](./pulumi/)
- [Pulumi] 3.72.1
- [Python] 3.11.4
- [Go] 1.20.5
- [Node.js][node] 18.16.1
- [dotnet] sdk 6
- [Java] 19.0.1 and [Maven] 3.9.2
- [jq] 1.6
2022-12-21 16:04:57 +01:00
### [`purescript`](./purescript/)
2023-07-14 02:52:19 +02:00
- [Purescript] (purs) 0.15.9
- [Spago] 0.21.0
- [purescript-language-server] 0.17.1
- [purs-tidy] 0.10.0
2022-12-21 16:04:57 +01:00
2022-07-31 22:33:11 +02:00
### [`python`](./python/)
2023-07-14 02:52:19 +02:00
- [Python] 3.11.4
- [pip] 23.0.1
2022-07-31 22:33:11 +02:00
2022-07-31 22:18:29 +02:00
### [`ruby`](./ruby/)
2023-07-14 02:52:19 +02:00
- [Ruby] 3.2.2, plus the standard Ruby tools (`bundle`, `gem`, etc.)
2022-07-31 22:18:29 +02:00
2022-07-31 17:59:22 +02:00
### [`rust`](./rust/)
- [Rust], including [cargo], [Clippy], and the other standard tools. The Rust version is determined as follows, in order:
- From the `rust-toolchain.toml` file if present
- From the `rust-toolchain` file if present
2023-07-14 02:52:19 +02:00
- Version 1.70.0 if neither is present
2022-07-31 17:59:22 +02:00
2023-07-14 02:52:19 +02:00
- [rust-analyzer] 2023-07-10
2022-07-31 22:47:19 +02:00
- [cargo-audit] 0.17.0
- [cargo-deny] 0.12.1
2022-07-31 17:59:22 +02:00
### [`scala`](./scala/)
2023-07-14 02:52:19 +02:00
- [Scala] 2.13.11 ([Java] 19.0.1)
- [sbt] 1.9.2
2022-07-31 17:59:22 +02:00
### [`shell`](./shell/)
2023-07-14 02:52:19 +02:00
- [shellcheck] 0.9.0
2024-02-02 09:35:49 +01:00
### [`Vlang`](./vlang/)
- [Vlang] 0.4.4
2022-07-31 17:59:22 +02:00
### [`zig`](./zig/)
2023-07-14 02:52:19 +02:00
- [Zig] 0.10.1
2022-07-31 17:59:22 +02:00
2022-07-31 17:13:00 +02:00
## Code organization
All of the templates have only the root [flake](./flake.nix) as a flake input. That root flake provides a common revision of [Nixpkgs] and [`flake-utils`][flake-utils] to all the templates.
2022-08-04 10:26:16 +02:00
[boot]: https://www.boot-clj.com
2022-07-31 17:59:22 +02:00
[buf]: https://github.com/bufbuild/buf
2024-03-24 03:45:43 +01:00
[C]: https://www.open-std.org/jtc1/sc22/wg14
[C++]: https://isocpp.org
2022-08-01 00:00:58 +02:00
[cabal]: https://www.haskell.org/cabal
2022-07-31 17:59:22 +02:00
[cachix]: https://www.cachix.org
[cargo]: https://doc.rust-lang.org/cargo
2022-07-31 22:47:19 +02:00
[cargo-audit]: https://crates.io/crates/cargo-audit
[cargo-deny]: https://crates.io/crates/cargo-deny
[clang-tools]: https://clang.llvm.org/
2022-07-31 17:59:22 +02:00
[clippy]: https://github.com/rust-lang/rust-clippy
2022-08-04 10:19:10 +02:00
[clojure]: https://clojure.org
[cmake]: https://cmake.org/
[codespell]: https://github.com/codespell-project/codespell
2022-09-28 09:34:13 +02:00
[composer]: https://getcomposer.org/
[conan]: https://conan.io/
2022-08-02 02:58:25 +02:00
[conftest]: https://www.conftest.dev
[cppcheck]: http://cppcheck.sourceforge.net/
2023-05-25 21:23:06 +02:00
[csharp]: https://dotnet.microsoft.com/en-us/languages/csharp
2022-07-31 20:23:05 +02:00
[cue]: https://cuelang.org
2022-07-31 18:20:01 +02:00
[damon]: https://github.com/hashicorp/damon
2022-07-29 02:17:49 +02:00
[dhall]: https://dhall-lang.org
2022-08-05 11:10:37 +02:00
[dhall-bash]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-bash
[dhall-docs]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-docs
[dhall-json]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-json
[dhall-lsp-server]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server
[dhall-nix]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-nix
[dhall-nixpkgs]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-nixpkgs
[dhall-openapi]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-openapi
2022-07-31 17:59:22 +02:00
[dhall-to-nix]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-nix
2022-08-05 11:10:37 +02:00
[dhall-toml]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-toml
[dhall-yaml]: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml
2023-05-25 21:23:06 +02:00
[dotnet]: https://dotnet.microsoft.com/en-us/
[doxygen]: https://www.doxygen.nl/
2022-08-13 17:10:46 +02:00
[dune]: https://dune.build
2022-07-29 02:17:49 +02:00
[elixir]: https://elixir-lang.org
2022-07-31 21:10:16 +02:00
[elm]: https://elm-lang.org
[elm2nix]: https://github.com/cachix/elm2nix
2022-07-31 17:13:00 +02:00
[flake-utils]: https://github.com/numtide/flake-utils
[gdb]: https://www.gnu.org/software/gdb/
2022-08-02 12:57:37 +02:00
[gigalixir]: https://www.gigalixir.com
2022-07-29 02:17:49 +02:00
[gleam]: https://gleam.run
[go]: https://go.dev
2022-07-31 18:02:44 +02:00
[godoc]: https://pkg.go.dev/golang.org/x/tools/cmd/godoc
[goimports]: https://pkg.go.dev/golang.org/x/tools/cmd/goimports
[golangci-lint]: https://github.com/golangci/golangci-lint
2022-07-31 17:59:22 +02:00
[gradle]: https://gradle.org
[gtest]: https://github.com/google/googletest
2022-08-01 00:00:58 +02:00
[hashicorp]: https://hashicorp.com
[haskell]: https://haskell.org
2023-10-16 02:22:58 +02:00
[haxe]: https://haxe.org/
2022-07-31 17:13:00 +02:00
[iex]: https://hexdocs.pm/iex/IEx.html
2022-07-29 02:17:49 +02:00
[java]: https://java.com
2024-04-15 20:28:42 +02:00
[jdtls]: https://projects.eclipse.org/projects/eclipse.jdt.ls
2023-07-14 00:53:11 +02:00
[jq]: https://jqlang.github.io/jq
2022-07-29 02:17:49 +02:00
[kotlin]: https://kotlinlang.org
[latex]: https://www.latex-project.org/
[lcov]: https://ltp.sourceforge.net/coverage/lcov.php
2022-08-04 10:19:10 +02:00
[leiningen]: https://leiningen.org
2022-07-31 18:20:01 +02:00
[levant]: https://github.com/hashicorp/levant
2022-07-31 17:59:22 +02:00
[lorri]: https://github.com/target/lorri
[maven]: https://maven.apache.org
2022-07-31 17:13:00 +02:00
[mix]: https://elixir-lang.org/getting-started/mix-otp/introduction-to-mix.html
2023-05-25 21:23:06 +02:00
[mono]: https://www.mono-project.com/
[msbuild]: https://github.com/dotnet/msbuild
2022-08-01 03:04:16 +02:00
[nickel]: https://nickel-lang.org
2022-07-31 21:01:58 +02:00
[nim]: https://nim-lang.org
[nimble]: https://github.com/nim-lang/nimble
2022-07-31 17:59:22 +02:00
[niv]: https://github.com/nmattia/niv
2022-07-29 02:17:49 +02:00
[nix]: https://nixos.org
2022-07-31 17:59:22 +02:00
[nixfmt]: https://github.com/serokell/nixfmt
2022-07-31 17:13:00 +02:00
[nixpkgs]: https://github.com/NixOS/nixpkgs
2022-07-31 17:05:20 +02:00
[nix-direnv]: https://github.com/nix-community/nix-direnv
2022-07-29 02:17:49 +02:00
[node]: https://nodejs.org
2022-08-02 12:50:59 +02:00
[node2nix]: https://github.com/svanderburg/node2nix
2022-07-31 18:20:01 +02:00
[nomad]: https://nomadproject.io
2022-08-13 17:37:24 +02:00
[nomad-autoscaler]: https://github.com/hashicorp/nomad-autoscaler
2022-07-31 18:20:01 +02:00
[nomad-pack]: https://github.com/hashicorp/nomad-pack
2022-08-03 08:35:52 +02:00
[npm]: https://npmjs.org
2022-08-13 17:10:46 +02:00
[ocaml]: https://ocaml.org
[ocamlformat]: https://github.com/ocaml-ppx/ocamlformat
[odoc]: https://github.com/ocaml/odoc
2023-05-25 21:23:06 +02:00
[omnisharp-roslyn]: https://github.com/OmniSharp/omnisharp-roslyn
2022-07-31 21:59:08 +02:00
[opa]: https://openpolicyagent.org
2022-07-31 18:11:52 +02:00
[packer]: https://packer.io
2022-07-31 22:33:11 +02:00
[pip]: https://pypi.org/project/pip
2022-07-31 17:13:00 +02:00
[phoenix]: https://phoenixframework.org
2022-09-28 09:34:13 +02:00
[php]: https://php.net/
2022-07-31 17:59:22 +02:00
[pnpm]: https://pnpm.io
2022-07-29 02:49:09 +02:00
[protobuf]: https://developers.google.com/protocol-buffers
2023-07-14 00:53:11 +02:00
[pulumi]: https://pulumi.com/
[purescript]: https://github.com/purescript/purescript
2022-12-21 16:04:57 +01:00
[purescript-language-server]: https://github.com/nwolverson/purescript-language-server
[purs-tidy]: https://github.com/natefaubion/purescript-tidy
2022-07-31 22:33:11 +02:00
[python]: https://python.org
2023-03-06 12:28:29 +01:00
[release]: https://github.com/NixOS/nixpkgs/releases/tag/22.11
2022-07-31 22:18:29 +02:00
[ruby]: https://ruby-lang.org
2022-07-29 02:17:49 +02:00
[rust]: https://rust-lang.org
2022-08-02 02:58:25 +02:00
[rust-analyzer]: https://rust-analyzer.github.io
2022-07-29 02:17:49 +02:00
[scala]: https://scala-lang.org
[shellcheck]: https://www.shellcheck.net/
2022-07-31 17:59:22 +02:00
[statix]: https://github.com/nerdypepper/statix
[sbt]: https://www.scala-sbt.org
2023-03-06 12:28:29 +01:00
[spago]: https://github.com/purescript/spago
[tectonic]: https://tectonic-typesetting.github.io/
2022-07-31 18:11:52 +02:00
[terraform]: https://terraform.io
[terragrunt]: https://terragrunt.gruntwork.io
[texlab]: https://github.com/latex-lsp/texlab
[texlive]: https://www.tug.org/texlive/
2022-08-23 14:42:54 +02:00
[tflint]: https://github.com/terraform-linters/tflint
2022-08-13 17:32:28 +02:00
[vault]: https://www.vaultproject.io
[vcpkg]: https://vcpkg.io/
[vcpkg-tool]: https://github.com/microsoft/vcpkg-tool
2022-07-31 17:59:22 +02:00
[vulnix]: https://github.com/flyingcircusio/vulnix
[yarn]: https://yarnpkg.com
2024-02-02 09:35:49 +01:00
[vlang]: https://vlang.io/
2022-07-29 02:17:49 +02:00
[zig]: https://ziglang.org