configuration/packages/email-hash.nix
2023-05-17 18:45:47 -07:00

19 lines
335 B
Nix

{ rustPlatform
# Dependencies
, sqlite
}:
rustPlatform.buildRustPackage rec {
pname = "email-hash";
version = "0.2.2";
src = fetchGit {
url = ~/akorg/project/current/email-hash/email-hash;
ref = "v${version}";
};
cargoHash = "sha256-UVskojG36lJIeO8ul4kTI/SaayQX3O9E00+cDz0VxaA=";
buildInputs = [ sqlite ];
}