chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / kr / kryptor / package.nix
blob15029ab22e0ca01beaf0dccea505cdb526d1d841
1 { lib
2 , buildDotnetModule
3 , fetchFromGitHub
4 }:
6 buildDotnetModule rec {
7   pname = "kryptor";
8   version = "4.1.0";
10   src = fetchFromGitHub {
11     owner = "samuel-lucas6";
12     repo = "Kryptor";
13     rev = "v${version}";
14     hash = "sha256-BxUmDzmfvRelQDHb5uLcQ2YPL7ClxZNFGm/gQoDK8t8=";
15   };
17   projectFile = "src/Kryptor.sln";
18   nugetDeps = ./deps.nix;
20   executables = ["kryptor"];
22   dotnetFlags = ["-p:IncludeNativeLibrariesForSelfExtract=true"];
24   meta = {
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;
32   };