2023-10-17 12:39:18 -06:00
|
|
|
let
|
|
|
|
bruno = _: super: {
|
2024-02-18 12:23:08 -07:00
|
|
|
bruno = super.bruno.overrideAttrs (
|
|
|
|
_: rec {
|
|
|
|
version = "0.25.0";
|
|
|
|
src = super.fetchurl {
|
|
|
|
url = "https://github.com/usebruno/bruno/releases/download/v${version}/bruno_${version}_amd64_linux.deb";
|
|
|
|
hash = "sha256-h7GBZaYKHwZnGNZGcVtyV0cJa8EgsulDsFIB3ggYGng=";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2023-10-17 12:39:18 -06:00
|
|
|
};
|
|
|
|
in
|
|
|
|
bruno
|