mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-07 21:37:04 +09:00
27 lines
718 B
Nix
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
|
|
];
|
|
};
|
|
});
|
|
}
|