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";
2023-06-26 17:54:05 +00:00
version = "0.3.0";
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}";
};
2023-06-26 17:54:05 +00:00
cargoHash = "sha256-yQflzab3O16mGQduGfhJZ/I3oLgJKE9zRzlffS8uLVw=";
2022-06-09 23:36:42 +00:00
buildInputs = [ sqlite ];
}