Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

oldshell.nix
with import <nixpkgs> { };

stdenv.mkDerivation {
  name = "Pijul";
  buildInputs =
    with pkgs;
    [
      zstd
      libsodium
      openssl
      pkg-config
      libiconv
      xxHash
    ]
    ++ lib.optionals stdenv.isDarwin (
      with darwin.apple_sdk.frameworks;
      [
        CoreServices
        Security
        SystemConfiguration
      ]
    );
}