No description
Find a file
dependabot[bot] 2985c74516
build(deps): bump zeebe-io/backport-action from 2.5.0 to 3.0.2
Bumps [zeebe-io/backport-action](https://github.com/zeebe-io/backport-action) from 2.5.0 to 3.0.2.
- [Release notes](https://github.com/zeebe-io/backport-action/releases)
- [Commits](https://github.com/zeebe-io/backport-action/compare/v2.5.0...v3.0.2)

---
updated-dependencies:
- dependency-name: zeebe-io/backport-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-03 13:17:38 +00:00
.github build(deps): bump zeebe-io/backport-action from 2.5.0 to 3.0.2 2024-06-03 13:17:38 +00:00
config Remove and gitignore the autoreconf generated files 2024-03-02 10:18:47 +01:00
contrib function-trace: always show the trace 2019-09-18 23:23:21 +02:00
dep-patches Move dependency patches from top level into subdir 2024-01-17 13:13:54 -05:00
doc Merge pull request #10581 from bam80/patch-3 2024-04-22 11:33:58 +02:00
m4 Build a minimized Nix with MinGW 2024-04-17 12:26:10 -04:00
maintainers pre-commit: Remove nixpkgs-fmt 2024-04-21 13:54:34 +02:00
misc Remove custom lowdown 2023-12-13 16:25:18 -05:00
mk Create compile-commands.json with Make 2024-03-21 15:55:44 +08:00
perl Add Git object hashing to the store layer 2024-02-27 11:27:34 -05:00
scripts Prevent nix-daemon.sh from leaking variable into user environment 2024-04-06 10:26:29 -04:00
src Merge remote-tracking branch 'nixos/master' 2024-04-22 23:29:11 +02:00
tests Merge remote-tracking branch 'nixos/master' 2024-04-22 23:29:11 +02:00
.clang-format Have clang-format indent conditional CPP 2024-04-15 08:33:45 -04:00
.clang-tidy Add .clang-tidy 2024-02-01 01:01:39 +01:00
.dir-locals.el .dir-locals.el: Set c-block-comment-prefix 2020-07-10 11:21:06 +02:00
.editorconfig .editorconfig: Also affect Perl FFI xs file 2023-11-09 23:11:52 -05:00
.gitignore Add pre-commit hook and make format target 2024-04-21 13:54:34 +02:00
.version Bump version 2024-03-11 21:16:10 +01:00
configure.ac Require at least libseccomp 2.5.5 2024-04-22 22:37:34 +02:00
CONTRIBUTING.md docs: Fix link to release note documentation 2024-03-08 20:04:55 +01:00
COPYING * Change this to LGPL to keep the government happy. 2006-04-25 16:41:06 +00:00
default.nix add flake-compat to flake.nix and use sha256 in default.nix 2023-03-06 21:11:24 +01:00
docker.nix fix "add an option to include flake-registry..." 2023-05-16 14:35:31 +02:00
flake.lock Add pre-commit hook and make format target 2024-04-21 13:54:34 +02:00
flake.nix Merge remote-tracking branch 'nixos/master' 2024-04-22 23:29:11 +02:00
local.mk local.mk: Solve warnings 2024-04-17 15:37:14 +02:00
Makefile Add pre-commit hook and make format target 2024-04-21 13:54:34 +02:00
Makefile.config.in C API: fix docs build after rebase 2024-03-28 10:51:59 +01:00
package.nix Merge remote-tracking branch 'nixos/master' 2024-04-22 23:29:11 +02:00
precompiled-headers.h Build a minimized Nix with MinGW 2024-04-17 12:26:10 -04:00
README.md remove Xp::ReplFlake 2024-04-05 22:56:54 +02:00
shell.nix Remove url literals 2022-01-24 13:28:21 +01:00

Nix Super

It's Nix, but super!

This is an upstream-tracking fork of Nix that includes various patches, some controversial in nature and not fit for Nix upstream.

Features

nix-flake-default.patch from nix-dram

This uses an older version of the patch, when the name of the default installable was not yet configurable.

If you have an entry called default in your Nix registry, you can do things like:

$ nix shell jq gron kubectl
# equivalent to nix shell default#jq default#gron default#kubectl

More information

Experimental features enabled by default

The following experimental features are enabled by default:

  • flakes (Xp::Flakes)
  • nix-command (Xp::NixCommand)
  • fetch-tree (Xp::FetchTree)

Additional settings

The following settings are added to this fork:

  • reject-flake-config: rejects all flake configuration (including whitelisted settings) and warns about it

Full thunk evaluation in flake.nix

In stock Nix, only the outputs section of flake.nix is able to make full use of the Nix language. The inputs section as well as the top-level attribute set are required to be trivial. This is for good reason, as it prevents arbitrarily complex computations during operations where you would not expect this, such as nix flake metadata. Nonetheless, people were often annoyed by this limitation. Nix Super includes patches to disable the triviality checks, to encourage experimentation with fancy new ways of handling flake inputs.

Named packages in nix profile

A preemptive merge of https://github.com/NixOS/nix/pull/8678

Activatables

Nix Super introduces the concept of activatables; applications that are installed solely in their own profile and rely on an activation script to perform actions outside of the Nix store.

Two new subcommands are implemented to make use of activatables:

  • nix system for managing NixOS, as a replacement for nixos-rebuild
  • nix home for managing home-manager configurations, as a replacement for the home-manager CLI tool

The $ operator

The $ operator or function application operator can be used to reduce parentheses hell in some situations, though its semantics are slightly different from the Haskell variant, making this one less useful.

builtins.trace "asdf" $ map toString [ 1 2 3 ]

Easy use of callPackage from the CLI

The flag -C/--call-package allows you to directly build callPackageable expressions from the CLI. This invokes import <nixpkgs> {} to get access to callPackage.

$ cat hello.nix
{
  stdenv,
  hello
}:

stdenv.mkDerivation {
  name = "hello";

  nativeBuildInputs = [ hello ];

  buildCommand = "hello > $out";
}

$ nix build -C hello.nix
$ cat result
Hello, world!

CLI overrides

Various CLI flags have been added to allow on-the-fly overriding of installables.

Override expression arguments

Allows overriding any argument usually overridable via .override. Can be used multiple times.

$ nix build ffmpeg --override withMfx true

Override packages

Like --override, but for overriding packages. This can be any installable from any flake. Can be used multiple times.

$ nix build nil --override-pkg nix github:privatevoid-net/nix-super

Override attributes

The previous attributes are available in old, but are also in scope via with.

$ nix build hello --override-attrs '{ name = "my-${name}"; src = ./.; }' --impure

Use withPackages

The packages are available in ps, but are also in scope via with.

$ nix shell python3 --with '[ numpy pandas matplotlib ]'

Do anything

--apply-to-installabe gives you direct access to the installable in a function

$ nix build writeText --apply-to-installable 'writeText: writeText "test" "hello"'

Additional environment variables for nix shell

nix shell will prepend the /bin directory of a given package to PATH, but what about other environment variables?

Nix Super configures many other environment variables, including:

  • CUPS_DATADIR
  • DICPATH
  • GIO_EXTRA_MODULES
  • GI_TYPELIB_PATH
  • GST_PLUGIN_PATH_1_0
  • GTK_PATH
  • INFOPATH
  • LADSPA_PATH
  • LIBEXEC_PATH
  • LV2_PATH
  • MOZ_PLUGIN_PATH
  • QTWEBKIT_PLUGIN_PATH
  • TERMINFO_DIRS
  • XDG_CONFIG_DIRS
  • XDG_DATA_DIRS

It also sets IN_NIX3_SHELL=1 to allow external processes to detect when you're in a Nix shell, for scripting or shell prompt customization.

Support for the git+ipld fetcher scheme

Adds git+ipld to the list of supported URL schemes for the git fetcher. Allows you to use Nix with git-remote-ipld.

NOTE: This does not mean that Nix Super itself has any IPFS capabilities (yet).