Clyde

Clyde is a package manager for prebuilt applications.

It works on Linux, macOS and Windows.

Motivation

You want to install the latest version of tools like ripgrep, fd or gh, 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

  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

Commands

clyde setup

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

clyde update

Update Clyde store.

clyde install foobar[@version]

Install 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 would not install a 2.0.0 version but it would 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

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

clyde upgrade

Upgrade all packages to the latest version. If a package has been installed with an @version restriction, enforce 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 the Clyde store contains the sha256 checksum of all 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 replace 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.