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