overlays/bruno: update to 0.25.0

This commit is contained in:
Aaron Bieber 2023-10-17 12:39:18 -06:00
parent 57e45ae661
commit c39c7e1d9c
No known key found for this signature in database
2 changed files with 14 additions and 0 deletions

12
overlays/bruno.nix Normal file
View File

@ -0,0 +1,12 @@
let
bruno = _: super: {
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=";
};
});
};
in
bruno

View File

@ -14,11 +14,13 @@ let
heisenbridge = prIsOpen.overlay 0 (import ./heisenbridge.nix);
#rex = prIsOpen.overlay 0 (import ./rex.nix);
signal-desktop = prIsOpen.overlay 260160 (import ./signal-desktop.nix);
bruno = prIsOpen.overlay 260160 (import ./bruno.nix);
in
{
nixpkgs.overlays =
if isUnstable
then [
bruno
signal-desktop
#rex
heisenbridge