pat: 0.15.1 -> 0.16.0 (#351515)

This commit is contained in:
Artturin 2024-10-27 05:07:07 +02:00 committed by GitHub
commit 27000de661
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 17 deletions

View File

@ -1,30 +1,42 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, libax25
, installShellFiles
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
libax25,
installShellFiles,
fetchpatch,
}:
buildGoModule rec {
pname = "pat";
version = "0.15.1";
version = "0.16.0";
src = fetchFromGitHub {
owner = "la5nta";
repo = "pat";
rev = "v${version}";
hash = "sha256-wNWqqGc4mf3z0ejMpU+jWhqCbjNJ2b6+pbBjDYKwKK8=";
hash = "sha256-JlqYdsAXs3pS5i59tiel+gxQsTrn5mUs0qLzjHxGZU0=";
};
vendorHash = "sha256-m5yb6+TfRApw0ZROx9ZA3RPiKV+1DHo/73CNQpIfMlU=";
ldflags = [ "-s" "-w" ];
nativeBuildInputs = [
installShellFiles
# Remove upon next release since upstream is fixed
# https://github.com/la5nta/pat/pull/449
patches = [
(fetchpatch {
url = "https://github.com/la5nta/pat/commit/5604eac8853216d96d49d7d9947bdc514e195538.patch";
sha256 = "sha256-Z9uoZLlhdCslULUxGkc4ao4ptC4ImWzSrfabSA5S/PE=";
})
];
vendorHash = "sha256-Z6p0wiOY5l++nch64BJWGXleBgUNecTDm+yVCnmXvtU=";
ldflags = [
"-s"
"-w"
];
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.hostPlatform.isLinux [ libax25 ];
# Needed by wl2k-go go module for libax25 to include support for Linux' AX.25 stack by linking against libax25.
@ -39,7 +51,10 @@ buildGoModule rec {
description = "Pat is a cross platform Winlink client written in Go";
homepage = "https://getpat.io/";
license = licenses.mit;
maintainers = with maintainers; [ dotemup sarcasticadmin ];
maintainers = with maintainers; [
dotemup
sarcasticadmin
];
platforms = platforms.unix;
mainProgram = "pat";
};

View File

@ -29823,8 +29823,6 @@ with pkgs;
passky-desktop = callPackage ../applications/misc/passky-desktop { };
pat = callPackage ../applications/radio/pat { };
pinboard = with python3Packages; toPythonApplication pinboard;
pinboard-notes-backup = haskell.lib.compose.justStaticExecutables haskellPackages.pinboard-notes-backup;