• Stars
    star
    369
  • Rank 111,756 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created about 4 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Swiss-knife for updating nix packages.

nix-update

Nix-update updates versions/source hashes of nix packages. It is designed to work with nixpkgs but also other package sets.

Features

  • automatically figure out the latest version of packages from:
    • BitBucket
    • Codeberg
    • crates.io
    • Gitea
    • GitHub
    • GitLab
    • PyPi
    • RubyGems.org
    • Sourcehut
    • Savannah
  • update buildRustPackage's cargoHash/cargoSha256 and cargoSetupHook's cargoDeps
  • update buildGoModule's vendorHash/vendorSha256
  • update buildNpmPackage's npmDepsHash and npmConfigHook's npmDeps
  • update buildComposerProject's vendorHash
  • update buildMavenPackage's mvnHash
  • update fetchYarnDeps offlineCache output hash
  • update flake outputs (see --flake)
  • build and run the resulting package (see --build, --run or --shell
  • commit updated files (see --commit flag)
  • run update scripts (passthru.updateScript, see --use-update-script flag)
  • run package tests (see --test flag)
  • specify the system to use (see --system flag)

Installation

nix-update is included in nixpkgs.

To run without installing it, use:

$ nix-shell -p nix-update

To install it:

$ nix-env -f '<nixpkgs>' -iA nix-update

To run it from the git repository:

$ nix-build
$ ./result/bin/nix-update

If you have nix flakes enabled you can also do:

$ nix run github:Mic92/nix-update

USAGE

First change to your directory containing the nix expression (Could be a nixpkgs or your own repository). Than run nix-update as follows

$ nix-update attribute [--version version]

If your package is defined in a flake use the --flake flag instead:

$ nix-update attribute --flake [--version version]

nix-update will than try to update either the packages.{currentSystem}.{attribute} or {attribute} output attribute of the given flake. To update a package in legacyPackages, pass the full path to that package including the platform: legacyPackages.{platform}.{attribute}.

This example will fetch the latest github release:

$ nix-update nixpkgs-review

It is also possible to specify the version manually

$ nix-update --version=2.1.1 nixpkgs-review

To update an unstable package to the latest commit of the default branch:

$ nix-update --version=branch nixpkgs-review

To update an unstable package the latest commit from a certain branch:

$ nix-update --version=branch=develop nixpkgs-review

To only update sources hashes without updating the version:

$ nix-update --version=skip nixpkgs-review

To extract version information from versions with prefixes or suffixes, a regex can be used

$ nix-update jq --version-regex 'jq-(.*)'

By default nix-update will locate the file that needs to be patched using the src attribute of a derivation. In some cases this heurestic is wrong. One can override the behavior like that:

$ nix-update hello --override-filename pkgs/applications/misc/hello/default.nix

The nix-update command checks for new releases of a package using the src attribute. However, in some cases a package may use a non-standard release URL that is not supported by nix-update, but still has a repository with release information. For example, the Signal Desktop package in Nixpkgs fetches updates from https://updates.signal.org/, but also publishes release information on its GitHub page. In such cases, use the --url parameter to direct nix-update to the correct repository:

nix-update --url https://github.com/signalapp/Signal-Desktop --override-filename pkgs/applications/networking/instant-messengers/signal-desktop/default.nix   signal-desktop

With the --shell, --build, --test and --run flags the update can be tested. Additionally, the --review flag can be used to initiate a run of nixpkgs-review, which will ensure all dependent packages can be built. In order to ensure consistent formatting, the --format flag will invoke nixpkgs-fmt.

# Also runs nix-build
$ nix-update --build nixpkgs-review
# Also runs nix-build nixpkgs-review.tests
$ nix-update --test nixpkgs-review
# Also runs nix-shell
$ nix-update --shell nixpkgs-review
# Also runs nix run
$ nix-update --run nixpkgs-review
# Run `nixpkgs-review wip` to validate dependent packages
$ nix-update --review nixpkgs-review
# Format file
$ nix-update --format nixpkgs-review

Nix-update also can optionally generate a commit message in the form attribute: old_version -> new_version with the applied version update:

$ nix-update --commit bitcoin-abc
...
[master 53d68a6a5a9] bitcoin-abc: 0.21.1 -> 0.21.2
1 file changed, 2 insertions(+), 2 deletions(-)

By default, nix-update will attempt to update to the next stable version of a package. Alphas, betas, release candidates and similar unstable releases will be ignored. This can be affected by changing the parameter version from its default value stable to unstable.

$ nix-update sbt
Not updating version, already 1.4.6

$ nix-update sbt --version=unstable
Update 1.4.6 -> 1.5.0-M1 in sbt

Development setup

First clone the repo to your preferred location (in the following, we assume ~/ - your home):

$ git clone https://github.com/Mic92/nix-update/ ~/nix-update

Than enter the dev shell:

$ cd ~/nix-update
$ nix develop

Change to the repository that contains the nix files you want to update, i.e. nixpkgs:

$ cd nixpkgs

Now you can run nix-update just by specifying the full path to its executable wrapper:

$ ~/git/nix-update/bin/nix-update --commit hello

TODO

  • create pull requests

Known Bugs

nix-update might not work correctly if a file contain multiple packages as it performs naive search and replace to update version numbers. This might be a problem if:

  • A file contains the same version string for multiple packages.
  • name is used instead of pname and/or ${version} is injected into name.

Related discussions:

Related projects:

  • nixpkgs-update is optimized for mass-updates in nixpkgs while nix-update is better suited for interactive usage that might require user-intervention i.e. fixing the build and testing the result. nix-update is also not limited to nixpkgs.

More Repositories

1

sops-nix

Atomic secret provisioning for NixOS based on sops
Nix
1,081
star
2

cntr

A container debugging tool based on FUSE
Rust
542
star
3

nixos-shell

Spawns lightweight nixos vms in a shell
Nix
423
star
4

nix-ld

Run unpatched dynamic binaries on NixOS
C
422
star
5

python-mpd2

Python library which provides a client interface for the Music Player Daemon.
Python
342
star
6

nixpkgs-review

Review pull-requests on https://github.com/NixOS/nixpkgs
Python
327
star
7

dotfiles

My NixOS dotfiles
Nix
299
star
8

envfs

Fuse filesystem that returns symlinks to executables based on the PATH of the requesting process.
Rust
133
star
9

vmsh

Shell into a virtualized linux, with your own tools
Rust
116
star
10

nix-fast-build

Combine the power of nix-eval-jobs with nix-output-monitor to speed-up your evaluation and building process.
Python
105
star
11

mina-sidekiq

Tasks to deploy Sidekiq with mina.
Ruby
91
star
12

nix-build-uncached

A CI friendly wrapper around nix-build.
Go
72
star
13

zig.ko

Linux kernel module written in Zig
Makefile
70
star
14

nixos-aarch64-images

Build NixOS images for various ARM single computer boards
Python
49
star
15

x86_64-linux-cheatsheats

Plain files for syscalls, errnos, signals, registers and x86_64 instructions
Python
49
star
16

pry.py

pry.py - an interactive drop in shell for python, similar to binding.pry in ruby
Python
49
star
17

ssh-to-age

Convert SSH Ed25519 keys to age keys. This is useful for usage in sops-nix and sops
Go
47
star
18

buildbot-nix

A nixos module to make buildbot a proper Nix-CI.
Python
42
star
19

hue-ble-ctl

Control your Phillips Hue light bulb over bluetooth
Python
33
star
20

pythonix

Eval nix code from python
C++
32
star
21

awesome-dotfiles

Configuration files of the window manager awesome
Lua
28
star
22

nur-packages

My personal NUR repository
Nix
23
star
23

fast-flake-update

Update flake.lock with the latest commit of a local checkout
Python
22
star
24

flake-linter

Find duplicate dependencies in flakes
Python
18
star
25

ansible-lxc

Ansible Connection Plugin for lxc containers (https://linuxcontainers.org/)
Python
17
star
26

iana-etc

Build /etc/protocols and /etc/services files from IANA's Assigned Internet Protocol Numbers
Python
17
star
27

lognotify

log watcher for awesome wm
Lua
14
star
28

nix-sysdig

Wrapper to debug sysdig builds
Python
13
star
29

github-tags

sinatra app to generate rss feeds with the latest git tags of a project on github
Ruby
13
star
30

ssh-to-pgp

Convert SSH RSA keys to GPG keys
Go
11
star
31

whois42d

Whois server for the dn42 registry
Go
11
star
32

bing-gpt-server

HTML
9
star
33

utils

A set of lua modules I use in awesome wm.
Lua
9
star
34

stockholm

Mirror of https://git.thalheim.io/Mic92/stockholm/
Nix
9
star
35

valauncher

A fast dmenu-like gtk3 application launcher
CMake
8
star
36

dlopen-resolver

Python
7
star
37

openvpn-ddns

Maintain dns records for connecting openvpn clients
Ruby
7
star
38

flake-templates

Personal templates i like to use.
Nix
6
star
39

kvm-pirate

Attach to kvm-based VMs
Python
5
star
40

systemd-ta

http://c3d2.de/news/ta-systemd.html
JavaScript
4
star
41

nixos-test-example

Nix
4
star
42

nix-build-shell

Rust
4
star
43

dream2nix-home-assistant

Packaging experiments with dream2nix to package home-assistant with all dependencies.
Nix
4
star
44

robolab

Simulator for the course Robolab at TU Dresden
4
star
45

server-bookings

Rust
3
star
46

Algebra-I

Das inoffizielle Skript zur Vorlesung bei Prof. Schmidt
Ruby
3
star
47

nsattach

attach to linux namespaces
C
3
star
48

nixos-configuration

The content of this repo has been integrated into https://github.com/Mic92/dotfiles/
3
star
49

nix-fmt

abandoned in favor of https://github.com/orivej/go-nix and https://gitlab.com/jD91mZM2/rnix
OCaml
3
star
50

imap-notify

IMAP notifier using IMAP's NOTIFY SET
Python
3
star
51

docker-pid

Resolve container id/name to container's process id
Go
3
star
52

nftables

Mirror of netfilter/nftables
C
3
star
53

mpdtools

Usefull tools for MPD: mpdadd - Link and play files outside of the MPD directory to MPD. mpdmark - bookmark songs
Ruby
3
star
54

SWT_And_Programming

Programs/Stubs created during exercises at university.
Java
2
star
55

int3

Better debugger breakpoints
Python
2
star
56

vtune-nix

Vtune nix package
Nix
2
star
57

systemd-user-units

2
star
58

live-net-info

My adventures using the bubbletea framework.
Go
2
star
59

blog

Source of my blog
Shell
2
star
60

bors-gen-config

Generate bors.toml for github repositories
Python
2
star
61

themenabend-nixos

Folien und Code zum Themenabend รผber Nix/Nixos
JavaScript
2
star
62

lxc-machined-start

Integrate lxc container into machined
M4
2
star
63

company-tmux

emacs auto complete with content of tmux panes
Emacs Lisp
2
star
64

pgp-verify

Verify pgp signatures of files.
Go
2
star
65

build-system-koans

C
2
star
66

mpdstated

Auto restore recent position for each podcast in mpd.
Vala
2
star
67

container-pid

Rust crate to resolve a container names/ids to PID
Rust
2
star
68

bme680-mqtt

Publish BME680 sensor data to home-assistant via MQTT
Python
2
star
69

nixcon2023-nixos-anywhere

Presentation slides for NixCon 2023 presentation on nixos-anywhere
JavaScript
2
star
70

scripts

All my tiny scripts and stubs
Shell
1
star
71

lualdap

fork of https://git.zx2c4.com/lualdap/ with lua5.3 support
C
1
star
72

pcap-preload

Rust
1
star
73

mic92.github.com

1
star
74

keychron-keyboards

Configuration of my k6 pro keyboard
Nix
1
star
75

phd-website

HTML
1
star
76

ports

my freebsd ports
Makefile
1
star
77

drone-convert-nix

Go
1
star
78

webscraping-workshop

Folien und Code zum Webscraping workshop auf den Datenspuren 2015
JavaScript
1
star
79

qtile-config

Python
1
star
80

semeion

A DynDNS Server interface in Haskell and Yesod
Haskell
1
star
81

hadoop-exercise

MapReduce Assignment 2015 at System Engineering II (TU Dresden)
Java
1
star
82

xfstests-cntr

Fork of xfstests with support for cntr
Shell
1
star
83

fuidshift

Move Filesystem ownership into other subordinated uid ranges
Go
1
star
84

android-notifier

Automatically exported from code.google.com/p/android-notifier
Java
1
star
85

drone-nix-scheduler

Schedule nix jobsets in drone ci
Python
1
star
86

fft

FFT Implementation for Tensilica DSP Processors
C
1
star
87

arch-package-feed

bottle.py based project to provide a more advanced arch package feed.
Python
1
star
88

PKGBUILDs

My PKGBUILDs of Packages I maintain in Archlinux AUR
Shell
1
star
89

tracedump

System service to dump Intel processor trace + memory after a crash.
Python
1
star
90

Japanese-sum-solver

A solver for the logic game Japsum
JavaScript
1
star
91

clusterssh

wrapper arround go-ssh to execute commands in a cluster
Go
1
star