Clyde

Clyde is a package manager for prebuilt applications.

It works on Linux, macOS and Windows.

Clyde demo

Motivation

You want to install the latest version of tools like ripgrep, fd or fzf, but:

You don't have root access on the machine where you need these tools, so installing system packages is not an option.

You want to pin the tool versions to create a reproducible platform.

You are concerned about supply-chain attacks (see Security section).

Installation

Installing Clyde

To get started, you need to download the Clyde binary yourself. Clyde can update itself, but it needs to be installed manually first. You can either:

Next, make sure these tools are installed:

This requirement list might get smaller in the future if more features are implemented internally.

Getting started

Assuming the clyde binary is in your PATH.

  1. Run clyde setup.

  2. Add the created activation script to your shell startup script.

  3. Restart your shell.

You are now ready to use Clyde. Let's install ripgrep:

clyde install ripgrep

Check it works:

rg --help

Check you can read its man page:

man rg

To ensure you always run the latest version of Clyde, install it with itself!

clyde install clyde

Commands

clyde setup

Setup Clyde: setup the Clyde store, and creates an activation script. All changes are done in the "Clyde prefix" (see "Folder hierarchy" section).

The Clyde store contains the list of all packages Clyde can install.

clyde update

Updates Clyde store so that Clyde is aware of the availability of new packages or new versions of existing packages.

clyde install foobar[@version]

Installs foobar package, following the @version restriction if set.

The @version syntax follows Cargo's interpretation of Semantic Versioning.

This makes the syntax a bit surprising: clyde install foobar@1.2.3 can install an 1.2.4 version or even an 1.3.0 version, because Cargo considers them to be compatible.

To really pin a version you must use foobar@=1.2.3. To install the latest 1.2 version, use 'foobar@1.2.*' or foobar@~1.2.

This syntax may change in the future.

clyde uninstall foobar

Uninstalls the foobar package. Can also be called as clyde remove foobar.

clyde show foobar

Shows details about foobar package.

clyde search foobar

Searches Clyde store for a package matching "foobar" in its name or description.

clyde upgrade

Upgrades all packages to the latest version. If a package has been installed with an @version restriction, enforces it.

FAQ

Is Clyde more secure than curl <url> | bash?

Yes, but it still requires you to be careful.

It is more secure in that Clyde checks the integrity of all downloaded archives (The Clyde store contains the sha256 checksum of all known archives), making it more complicated for an attacker to trick you into installing a corrupted archive.

This means if an attacker takes over the GitHub account of an app developer and replaces some release artifacts with others, Clyde will refuse to install them. It does not protect however from the case where the attacker releases a new version of the application. To protect against this you need to pin the version numbers.

Clyde does not sandbox the applications.

Are Clyde packages built by Clyde?

No, Clyde installs binaries produced by app developers, it does not rebuild them (unlike projects like Homebrew).

This means that there is no guarantee that a package will run on your machine, even if Clyde installs it properly. This is especially true on old Linux installations: it is up to the app developer to provide binaries working on your system.

If a package used to work but the newer version does not, then you can pin the install to the latest working version, using the @version syntax.

Where is the list of Clyde packages stored?

Clyde packages are defined in the Clyde Store repository. clyde setup clones this repository on your machine. clyde update pulls the latest changes from it.

How do I request a new package?

File an issue on the Clyde store repository.

How do I add a new package?

Follow the creating a package documentation.

Similar projects

There are other projects similar to Clyde. This section lists some of them, and the ways they differ from Clyde: