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-11-10 19:13:24 +01:00
rev = "5e7a42d386a76f23affcb3d58b54dd41e96844ec";
hash = "sha256-MBKLx67Ivsk7E/6H75xj8zpeXzG+zXGBsEfHzn10YHk=";
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
}