Skip to content

Commit

Permalink
feat: Add brioche.lock and project.bri files for eza package (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: jaudiger <[email protected]>
  • Loading branch information
jaudiger authored Jul 1, 2024
1 parent 408fa91 commit 4608788
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/eza/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/eza/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: "eza",
version: "0.18.20",
};

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

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

0 comments on commit 4608788

Please sign in to comment.