Skip to content

Commit

Permalink
flake.lock: update nixpkgs,flake-utils
Browse files Browse the repository at this point in the history
Signed-off-by: Sumner Evans <[email protected]>
  • Loading branch information
sumnerevans committed Mar 26, 2024
1 parent 91c1e98 commit d05e0ba
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
16 changes: 8 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 7 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,25 @@
description = "Chatwoot <-> Matrix Help Bot Integration";

inputs = {
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs-unstable, flake-utils }:
outputs = { self, nixpkgs, flake-utils }:
(flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs-unstable { system = system; };
let pkgs = import nixpkgs { inherit system; };
in rec {
packages.chatwoot = pkgs.buildGoModule {
pname = "chatwoot";
version = "unstable-2023-12-14";

src = ./.;

version = "unstable-2024-03-26";
src = self;
propagatedBuildInputs = [ pkgs.olm ];

vendorHash = "sha256-MYmJf8UlR6IhF5SVEQ9nap1vWFH00TjFjKrmISInXMg=";
vendorHash = "sha256-BIymQIs7vYO4JvRrj4cg8VlgsJ+pK/TRftwbYXKJD88=";
};
packages.default = packages.chatwoot;

devShells.default = pkgs.mkShell {
packages = with pkgs; [ go_1_21 olm pre-commit gotools gopls ];
packages = with pkgs; [ go olm pre-commit gotools gopls ];
};
}));
}
5 changes: 1 addition & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/beeper/chatwoot

go 1.21
go 1.22

require (
github.com/jackc/pgx/v4 v4.18.3
Expand All @@ -15,9 +15,6 @@ require (
github.com/rs/xid v1.5.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
)

require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.3 // indirect
github.com/jackc/pgio v1.0.0 // indirect
Expand Down

0 comments on commit d05e0ba

Please sign in to comment.