nix-config/pkgs/signal-to-blog.nix

15 lines
406 B
Nix
Raw Normal View History

2024-10-23 14:44:05 +02:00
{ rustPlatform, fetchgit }:
2024-09-13 21:23:31 +02:00
rustPlatform.buildRustPackage {
name = "signal-to-blog";
src = fetchgit {
url = "https://forge.lel.lol/patrick/signal-to-blog.git";
2024-10-23 14:44:05 +02:00
rev = "280acaa8b03fb15d84ba594f1dd7f5c28aa1c2c1";
hash = "sha256-ZoQUlR+qsBE9AP8s1kh5KyGmtWQQ0KSYakaxgUegSZ4=";
2024-09-13 21:23:31 +02:00
};
2024-10-23 14:44:05 +02:00
cargoHash = "sha256-q9r1VeRQ5HOmBdst58MgS+hdyEXHIdncqV1v3OTmQv8=";
meta.mainProgram = "signal-to-blog";
2024-09-13 21:23:31 +02:00
}