Skip to content

Den Releases and Versioning

Den is a standalone library and has no dependencies. Den’s flakeModule expects to be imported in a Nix module providing nixpkgs lib.

It is very common for Den projects to use import-tree to load their modules/ directory.

Den bundles its own aspect types -originally based on flake-aspects but now optimized for Den.

This branch follows development, this is where PRs are merged, it is stable in the sense that every PR checks CI.

flake.nix
{
# Main Den - updates on each PR merge
inputs.den.url = "github:vic/den";
}

Docs: https://den.oeiuwq.com/

Den has a latest tag that always follows the latest created release tag.

Docs: https://den.oeiuwq.com/latest

Diff of changes since latest release: latest…main

This is intended for people that wishes to move only between release points. People still need to read Release Notes since they might contain important information on how Den is evolving.

flake.nix
# Latest Den - no longer gets updates until next release
{
inputs.den.url = "github:vic/den/latest";
}

Docs: https://den.oeiuwq.com/<version>

Read Den Releases

Contribute Community Sponsor