This repository has no description
1{
2 lib,
3 rustPlatform,
4 tangled,
5 ...
6}:
7
8rustPlatform.buildRustPackage {
9 pname = "bobbin";
10 version = "main";
11
12 src = ./.;
13
14 cargoHash = "sha256-apY29WbquD3Eh2yvyRqPPTjm60JZMkty4Vwi1ERZ2+Q=";
15
16 cargoBuildFlags = [
17 "--bin"
18 "bobbin"
19 "--package"
20 "bobbin"
21 ];
22
23 preBuild = ''
24 export BOBBIN_LEXICONS_DIR=${tangled}/lexicons
25 '';
26
27 doCheck = false;
28
29 meta = {
30 description = "tangled appview";
31 homepage = "https://tangled.org/oyster.cafe/bobbin";
32 license = lib.licenses.mit;
33 mainProgram = "bobbin";
34 };
35}
36