Nix package versions

Find all versions of a package that were available in a channel and the revision you can download it from.

Click on the revision number for installation instructions.

PackageVersionRevisionDate
emacs24.3-noxed4fd067bc0925598221aea1d38887f3d0a265762014-02-28
emacs23.4e10001042d6fc2b4246f51b5fa1625b8bf7e8df32014-06-28
emacs24.3ff8f23ab2614d90869cc2191590a8276c39406262014-09-27
emacs24.4515b06ef2ae59b9813b3606888e1791ede8f90902015-04-25
emacs25.0.50-1b5630e23befca742f67494f44dbe84070c9d56e7615c1b2016-03-20
emacs25.0.92893186f4fd4c1e697b2bc38aa8f268f236d5ea022016-04-19
emacs25.0.945d540387713f2d29dac423f5faadafd5aea2ff092016-05-19
emacs25.0.95d8516b0fe3396f5c18f00a81108957b4a872e7372016-07-18
emacs25.1-rc1cb5a2acaa118b61765fb59d176555535da582a622016-08-17
emacs24.50eddd4230678fc2c880c60b2fe530387db8798ac2016-09-16
emacs25.1-rc20eddd4230678fc2c880c60b2fe530387db8798ac2016-09-16
emacs25.1878bbaf4e9d49c251d90f0790d2e7ebcf622ddd02017-04-14
emacs25.277294205ac81810f333e25da2eb876d348fd7edc2017-09-11
emacs26.125b53f32236b308172673c958f570b5b488c7b732019-04-04
emacs26.2253272ce9f1d83dfcd80946e63ef7c1d6171ba0e2019-08-02
emacs25.3e296e89d75ab8aa1d0eed1c3688883a4f79375152020-07-27
emacs26.35c1ffb7a9fc96f2d64ed3523c2bdd379bdb7b4712021-02-22
emacs27.10ffaecb6f04404db2c739beb167a5942993cfd872021-03-24
emacs27.2d1c3fea7ecbed758168787fe4e4a3157e52bc8082022-04-18
emacs28.17cf5ccf1cdb2ba5f08f0ac29fc3d04b0b59a07e42022-08-16
emacs29.0.91824421b1796332ad1bcb35bc7855da832c43305f2023-05-30
emacs29.0.925a8650469a9f8a1958ff9373bd27fb8e54c4365d2023-06-29
emacs29.1-rc150a7139fbd1acd4a3d4cfa695e694c529dd26f3a2023-07-29
emacs29.17a339d87931bba829f68e94621536cad9132971a2024-01-25
emacs29.207518c851b0f12351d7709274bbbd4ecc1f089c72024-03-25
emacs28.2e89cf1c932006531f454de7d652163a9a5c866682024-04-07
emacs29.3e89cf1c932006531f454de7d652163a9a5c866682024-04-07

Install emacs

Packageemacs
Version29.0.91
Channelnixpkgs-unstable
Revision824421b1796332ad1bcb35bc7855da832c43305f

Install emacs with nix-env.

nix-env -iA emacs29 -f https://github.com/NixOS/nixpkgs/archive/824421b1796332ad1bcb35bc7855da832c43305f.tar.gz

Use emacs29 in a nix-shell.

nix-shell -p emacs29 -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/824421b1796332ad1bcb35bc7855da832c43305f.tar.gz

Use emacs in a nix script via tarball

let
    pkgs = import (builtins.fetchTarball {
        url = "https://github.com/NixOS/nixpkgs/archive/824421b1796332ad1bcb35bc7855da832c43305f.tar.gz";
    }) {};

    myPkg = pkgs.emacs29;
in
...

Use emacs in a nix script via Git

let
     pkgs = import (builtins.fetchGit {
         # Descriptive name to make the store path easier to identify
         name = "my-old-revision";
         url = "https://github.com/NixOS/nixpkgs/";
         ref = "refs/heads/nixpkgs-unstable";
         rev = "824421b1796332ad1bcb35bc7855da832c43305f";
     }) {};

     myPkg = pkgs.emacs29;
in
...

Motivation and Method

Installing older versions of packages in Nix is easy but currently there is no official way to find out what revision has the package version that I need. This page provides this functionality by letting you see what versions were available in the past, when they were available, what revision to install them from, and what command to use.

The list of versions available here is not exhaustive. To check what versions of packages were ever available data was collected from past revisions in 5 weeks intervals. This means that if a package changed versions more often than every 5 weeks there may be versions missing.

During the retrieval of version information, revisions for some periods could not be successfully built for some channels and this also causes versions to be missing from the list.