6 buildDotnetModule rec {
10 src = fetchFromGitHub {
11 owner = "samuel-lucas6";
14 hash = "sha256-BxUmDzmfvRelQDHb5uLcQ2YPL7ClxZNFGm/gQoDK8t8=";
17 projectFile = "src/Kryptor.sln";
18 nugetDeps = ./deps.nix;
20 executables = ["kryptor"];
22 dotnetFlags = ["-p:IncludeNativeLibrariesForSelfExtract=true"];
25 changelog = "https://github.com/samuel-lucas6/Kryptor/releases/tag/v${version}";
26 description = "Simple, modern, and secure encryption and signing tool that aims to be a better version of age and Minisign";
27 homepage = "https://github.com/samuel-lucas6/Kryptor";
28 license = lib.licenses.gpl3Only;
29 mainProgram = "kryptor";
30 maintainers = with lib.maintainers; [ arthsmn ];
31 platforms = lib.platforms.all;