Unverified Commit f8ad478e authored by arthsmn's avatar arthsmn
Browse files

kryptor: 4.1.0 -> 4.1.1

parent 7ceed4f8
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
[
  {
    "pname": "Geralt",
    "version": "2.1.0",
    "hash": "sha256-BCXJKa9200GFqlm0GFAyAxGRzlorFxHct83VXyZZlvQ="
    "version": "3.3.0",
    "hash": "sha256-vTGhyPsE5xxfM4nbADq54wM9FpEXLJgxuT5a2WvY79g="
  },
  {
    "pname": "libsodium",
    "version": "1.0.18.4",
    "hash": "sha256-mdV0etNrKc5rjsIxhCkj7qafT+yv6PTuYCheveVjPwI="
    "version": "1.0.20.1",
    "hash": "sha256-wd/z31FRbcaVGrogSNVjefEYWjNxTGzQd04DOlY1PFE="
  },
  {
    "pname": "McMaster.Extensions.CommandLineUtils",
    "version": "4.0.2",
    "hash": "sha256-e+UEOOxYPOEcX6QXTU8F+G5093qPSrfOqsYCLDcwSvQ="
    "version": "4.1.1",
    "hash": "sha256-K10ukfRqcRIKJT7PFxc7NFpKWRT+FIDg8IJAR8HA5Eo="
  },
  {
    "pname": "Monocypher",
    "version": "0.3.0",
    "hash": "sha256-InbhO6d2wZ96Zl69b+KIUVM6XRU1X1op6e15afx6hps="
    "version": "0.4.1",
    "hash": "sha256-mfLdmQkgsmpCdQuxbdU0IE900FfPrWTdi1iN/ZBL0ow="
  },
  {
    "pname": "System.ComponentModel.Annotations",
+3 −5
Original line number Diff line number Diff line
@@ -8,23 +8,21 @@

buildDotnetModule rec {
  pname = "kryptor";
  version = "4.1.0";
  version = "4.1.1";

  src = fetchFromGitHub {
    owner = "samuel-lucas6";
    repo = "Kryptor";
    tag = "v${version}";
    hash = "sha256-BxUmDzmfvRelQDHb5uLcQ2YPL7ClxZNFGm/gQoDK8t8=";
    hash = "sha256-+pG3u4U3IZ6jw2p2f1jptX7C/qt0mPIcMG82XYtPzbs=";
  };

  dotnet-sdk = dotnetCorePackages.sdk_8_0;
  projectFile = "src/Kryptor.sln";
  projectFile = "src/Kryptor/Kryptor.csproj";
  nugetDeps = ./deps.json;

  executables = [ "kryptor" ];

  dotnetFlags = [ "-p:TargetFramework=net8.0" ];

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];