configuration/packages/email-hash.nix

20 lines
335 B
Nix
Raw Normal View History

2023-01-21 02:59:40 +00:00
{ rustPlatform
2022-06-09 23:36:42 +00:00
# Dependencies
, sqlite
}:
rustPlatform.buildRustPackage rec {
2022-06-09 23:36:42 +00:00
pname = "email-hash";
2022-12-20 19:34:15 +00:00
version = "0.2.2";
2022-06-09 23:36:42 +00:00
src = fetchGit {
2023-05-18 01:45:47 +00:00
url = ~/akorg/project/current/email-hash/email-hash;
ref = "v${version}";
};
2022-12-20 19:34:15 +00:00
cargoHash = "sha256-UVskojG36lJIeO8ul4kTI/SaayQX3O9E00+cDz0VxaA=";
2022-06-09 23:36:42 +00:00
buildInputs = [ sqlite ];
}