Skip to content

Commit

Permalink
feat: add lurk package (brioche-dev#49)
Browse files Browse the repository at this point in the history
Signed-off-by: jaudiger <[email protected]>
  • Loading branch information
jaudiger authored Jul 6, 2024
1 parent 98ad7fe commit 68923e8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/lurk/brioche.lock

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

24 changes: 24 additions & 0 deletions packages/lurk/project.bri
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import * as std from "std";
import { cargoBuild } from "rust";

export const project = {
name: "lurk",
version: "0.3.5",
};

const crate = std
.download({
url: `https://github.com/JakWai01/lurk/archive/refs/tags/v${project.version}.tar.gz`,
hash: std.sha256Hash(
"ac2988dc82947133be7f2773548d01ccf6f5fb1d904212b226b87d938c16d6f7",
),
})
.unarchive("tar", "gzip")
.peel();

export default () => {
return cargoBuild({
crate,
runnable: "bin/lurk",
});
};

0 comments on commit 68923e8

Please sign in to comment.