-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflake.nix
38 lines (33 loc) · 1.03 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
description = "llama.cpp bindings for Flutter";
nixConfig = rec {
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ];
substituters = [ "https://cache.nixos.org" "https://cache.garnix.io" ];
trusted-substituters = substituters;
fallback = true;
http2 = false;
};
inputs.expidus-sdk = {
url = github:ExpidusOS/sdk;
inputs.nixpkgs.follows = "nixpkgs";
};
inputs.nixpkgs.url = github:ExpidusOS/nixpkgs;
outputs = { self, nixpkgs, expidus-sdk }:
with expidus-sdk.lib;
flake-utils.eachSystem flake-utils.allSystems (system:
let
pkgs = expidus-sdk.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
pname = "flutter_llama";
packages = with pkgs; [
flutter
(python3.withPackages (ps: with ps; [
sentencepiece
numpy
]))
gnome.zenity
];
};
});
}