configuration/packages/email-hash.nix

21 lines
355 B
Nix
Raw Normal View History

{ fetchgit
, 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 {
url = "/home/ak/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 ];
}