mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
picocrypt: 1.47 -> 1.48
This commit is contained in:
parent
0cd5c4f3db
commit
9c5857356f
1 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildGo124Module,
|
buildGoModule,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
stdenv,
|
stdenv,
|
||||||
copyDesktopItems,
|
copyDesktopItems,
|
||||||
|
@ -13,20 +13,20 @@
|
||||||
wrapGAppsHook3,
|
wrapGAppsHook3,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGo124Module rec {
|
buildGoModule (finalAttrs: {
|
||||||
pname = "picocrypt";
|
pname = "picocrypt";
|
||||||
version = "1.47";
|
version = "1.48";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Picocrypt";
|
owner = "Picocrypt";
|
||||||
repo = "Picocrypt";
|
repo = "Picocrypt";
|
||||||
tag = version;
|
tag = finalAttrs.version;
|
||||||
hash = "sha256-O/n9dJz8cdJwldOXnsG8W8OZU5WeSmNys746HxRHvdc=";
|
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 = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
|
@ -60,7 +60,7 @@ buildGo124Module rec {
|
||||||
name = "Picocrypt";
|
name = "Picocrypt";
|
||||||
exec = "picocrypt-gui";
|
exec = "picocrypt-gui";
|
||||||
icon = "picocrypt";
|
icon = "picocrypt";
|
||||||
comment = meta.description;
|
comment = finalAttrs.meta.description;
|
||||||
desktopName = "Picocrypt";
|
desktopName = "Picocrypt";
|
||||||
categories = [ "Utility" ];
|
categories = [ "Utility" ];
|
||||||
})
|
})
|
||||||
|
@ -69,9 +69,9 @@ buildGo124Module rec {
|
||||||
meta = {
|
meta = {
|
||||||
description = "Very small, very simple, yet very secure encryption tool, written in Go";
|
description = "Very small, very simple, yet very secure encryption tool, written in Go";
|
||||||
homepage = "https://github.com/Picocrypt/Picocrypt";
|
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;
|
license = lib.licenses.gpl3Only;
|
||||||
maintainers = with lib.maintainers; [ ryand56 ];
|
maintainers = with lib.maintainers; [ ryand56 ];
|
||||||
mainProgram = "picocrypt-gui";
|
mainProgram = "picocrypt-gui";
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue