mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-11 04:48:25 -07:00
10 lines
323 B
Nix
10 lines
323 B
Nix
final: prev: {
|
|
waveterm = prev.waveterm.overrideAttrs (oldAttrs: rec {
|
|
version = "0.13.1";
|
|
|
|
src = prev.fetchurl {
|
|
url = "https://github.com/wavetermdev/waveterm/releases/download/v${version}/waveterm-linux-amd64-${version}.deb";
|
|
sha256 = "q2rdc/DpVVRDK2X9QyS8w7gkHZAQR+Wopn40Vip9CeE=";
|
|
};
|
|
});
|
|
}
|