nixpkgs/pkgs/by-name/kr/kryptor/package.nix
Arthur 7a0d1c5178
kryptor: init at 4.1.0 (#326334)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-16 13:43:40 +02:00

34 lines
893 B
Nix

{ lib
, buildDotnetModule
, fetchFromGitHub
}:
buildDotnetModule rec {
pname = "kryptor";
version = "4.1.0";
src = fetchFromGitHub {
owner = "samuel-lucas6";
repo = "Kryptor";
rev = "v${version}";
hash = "sha256-BxUmDzmfvRelQDHb5uLcQ2YPL7ClxZNFGm/gQoDK8t8=";
};
projectFile = "src/Kryptor.sln";
nugetDeps = ./deps.nix;
executables = ["kryptor"];
dotnetFlags = ["-p:IncludeNativeLibrariesForSelfExtract=true"];
meta = {
changelog = "https://github.com/samuel-lucas6/Kryptor/releases/tag/v${version}";
description = "Simple, modern, and secure encryption and signing tool that aims to be a better version of age and Minisign";
homepage = "https://github.com/samuel-lucas6/Kryptor";
license = lib.licenses.gpl3Only;
mainProgram = "kryptor";
maintainers = with lib.maintainers; [ arthsmn ];
platforms = lib.platforms.all;
};
}