configuration/packages/email-hash.nix
Andrew Kvalheim c7c5265846 Resolve lints
2023-01-20 20:45:13 -08:00

19 lines
344 B
Nix

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