Skip to content

Commit

Permalink
pat: 0.15.1 -> 0.16.0 (#351515)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin authored Oct 27, 2024
2 parents bde936e + a450724 commit 27000de
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -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=";
# 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=";
})
];

ldflags = [ "-s" "-w" ];
vendorHash = "sha256-Z6p0wiOY5l++nch64BJWGXleBgUNecTDm+yVCnmXvtU=";

nativeBuildInputs = [
installShellFiles
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.
Expand All @@ -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";
};
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 27000de

Please sign in to comment.