Unverified Commit 653cf60d authored by Mathew Polzin's avatar Mathew Polzin Committed by GitHub
Browse files

picocrypt: 1.47 -> 1.48 (#400193)

parents 8ea5c36a 9c585735
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
{
  lib,
  buildGo124Module,
  buildGoModule,
  fetchFromGitHub,
  stdenv,
  copyDesktopItems,
@@ -13,20 +13,20 @@
  wrapGAppsHook3,
}:

buildGo124Module rec {
buildGoModule (finalAttrs: {
  pname = "picocrypt";
  version = "1.47";
  version = "1.48";

  src = fetchFromGitHub {
    owner = "Picocrypt";
    repo = "Picocrypt";
    tag = version;
    hash = "sha256-O/n9dJz8cdJwldOXnsG8W8OZU5WeSmNys746HxRHvdc=";
    tag = finalAttrs.version;
    hash = "sha256-Gvh6t/jFRBCX+I9CYkXV265PiRSSvH6qAgkU0fA/v4A=";
  };

  sourceRoot = "${src.name}/src";
  sourceRoot = "${finalAttrs.src.name}/src";

  vendorHash = "sha256-9xB0D5Og/eiWUZGMog6lBoze4GrdvBOtNAKcMc3AdIE=";
  vendorHash = "sha256-HvtQFoAK4+DX2Mwzf5f39tTnxJcH7Dox/otlvPVczeA=";

  ldflags = [
    "-s"
@@ -60,7 +60,7 @@ buildGo124Module rec {
      name = "Picocrypt";
      exec = "picocrypt-gui";
      icon = "picocrypt";
      comment = meta.description;
      comment = finalAttrs.meta.description;
      desktopName = "Picocrypt";
      categories = [ "Utility" ];
    })
@@ -69,9 +69,9 @@ buildGo124Module rec {
  meta = {
    description = "Very small, very simple, yet very secure encryption tool, written in Go";
    homepage = "https://github.com/Picocrypt/Picocrypt";
    changelog = "https://github.com/Picocrypt/Picocrypt/blob/${version}/Changelog.md";
    changelog = "https://github.com/Picocrypt/Picocrypt/blob/${finalAttrs.version}/Changelog.md";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ ryand56 ];
    mainProgram = "picocrypt-gui";
  };
}
})