Skip to content
vic

chessai/nix-std

no-nixpkgs standard library for the nix expression language

chessai/nix-std.json
{
"createdAt": "2020-08-05T22:01:47Z",
"defaultBranch": "master",
"description": "no-nixpkgs standard library for the nix expression language",
"fullName": "chessai/nix-std",
"homepage": null,
"language": "Nix",
"name": "nix-std",
"pushedAt": "2024-03-19T17:51:53Z",
"stargazersCount": 134,
"topics": [],
"updatedAt": "2025-11-06T23:17:36Z",
"url": "https://github.com/chessai/nix-std"
}

Build
Status

no-nixpkgs standard library for the nix expression language.

Fetch using plain Nix:

with {
std = import (builtins.fetchTarball {
url = "https://github.com/chessai/nix-std/archive/v0.0.0.1.tar.gz";
sha256 = "0vglyghzj19240flribyvngmv0fyqkxl8pxzyn0sxlci8whmc9fr"; });
};

Or, if using flakes, add it to your flake inputs:

{
inputs.nix-std.url = "github:chessai/nix-std";
outputs = { self, nix-std }:
let
std = nix-std.lib;
in
{
# ...
};
}