mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
7a0d1c5178
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
34 lines
893 B
Nix
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;
|
|
};
|
|
}
|