lol
1{ lib
2, rustPlatform
3, fetchCrate
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "rsign2";
8 version = "0.6.3";
9
10 src = fetchCrate {
11 inherit pname version;
12 hash = "sha256-bJeM1HTzmC8QZ488PpqQ0qqdFg1/rjPWuTtqo1GXyHM=";
13 };
14
15 cargoHash = "sha256-xqNFJFNV9mIVxzyQvhv5QwHVcXLuH76VYFAsgp5hW+w=";
16
17 meta = with lib; {
18 description = "A command-line tool to sign files and verify signatures";
19 homepage = "https://github.com/jedisct1/rsign2";
20 license = licenses.mit;
21 maintainers = with maintainers; [ figsoda ];
22 mainProgram = "rsign";
23 };
24}