1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-07 21:37:04 +09:00
anytype-heart/flake.nix
Anatolii Smolianinov 04f0f9cb78
GO-4140 update flake
2024-11-12 17:57:31 +01:00

27 lines
718 B
Nix

{
description = "";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
config = { allowUnfree = true; };
};
in {
devShell = pkgs.mkShell {
name = "anytype-heart";
nativeBuildInputs = [
pkgs.protoc-gen-grpc-web
pkgs.protoc-gen-js
pkgs.go_1_23
pkgs.gox
pkgs.protobuf3_21
pkgs.pkg-config
pkgs.pre-commit
# todo: govvv, not packaged
];
};
});
}