some shell tweaks, hush

This commit is contained in:
atagen 2025-09-19 11:02:43 +10:00
parent 6b2b079a18
commit 5203e0b27e
9 changed files with 177 additions and 108 deletions

18
pkgs/hush.nix Normal file
View file

@ -0,0 +1,18 @@
{
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "hush";
version = "0.1.4-git";
src = fetchFromGitHub {
owner = "hush-shell";
repo = "hush";
rev = "560c33a2dc8bf967b4fb0c80e3f18ca8934615ff";
hash = "sha256-kJ1o236xvNTPiLPWPgpQLLfEAXCGT419UgVWmwVHBYA=";
};
doCheck = false;
cargoLock.lockFile = "${finalAttrs.src}/Cargo.lock";
})