Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions flake.lock

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

2 changes: 1 addition & 1 deletion nix/unblob/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ let
];

preBuild = ''
cp -r --no-preserve=mode ${rust-module} build
cp -r --no-preserve=mode ${rust-module}/unblob .
'';

makeWrapperArgs = [
Expand Down
2 changes: 1 addition & 1 deletion nix/unblob/rust-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ craneLib.mkCargoDerivation {
'';
installPhaseCommand = ''
mkdir -p $out
cp -a build/* $out
cp -a build/lib.*/* $out
'';
}
4 changes: 4 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ mkShell {
packages = [
unblob
unblob.runtimeDeps
ruff
pyright
python3Packages.pytest
python3Packages.pytest-cov
poetry
lzo
update
Expand Down