Skip to content

Commit

Permalink
packetry: init at 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Oct 26, 2024
1 parent 2997153 commit f221ee0
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions pkgs/by-name/pa/packetry/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
fetchFromGitHub,
lib,
stdenv,
rustPlatform,
gtk4,
pkg-config,
pango,
wrapGAppsHook4,
darwin,
versionCheckHook,
}:

rustPlatform.buildRustPackage rec {
pname = "packetry";
version = "0.3.0";

src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "packetry";
rev = "refs/tags/v${version}";
hash = "sha256-yar4HusBSaiKj2QMwtt83jmbfzwt+oFTQ6UVVbOZbYQ=";
};

cargoHash = "sha256-W3J3MnRPxhXXc7MBQemnYKloVnuU52p48vrNsd+FCY4=";

nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];

buildInputs =
[
gtk4
pango
]
++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.AppKit
];

# Tests need a display to run
doCheck = false;

nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;

meta = with lib; {
description = "USB 2.0 protocol analysis application for use with Cynthion";
homepage = "https://github.com/greatscottgadgets/packetry";
license = licenses.bsd3;
maintainers = with maintainers; [ carlossless ];
mainProgram = "packetry";
platforms = platforms.linux ++ platforms.darwin;
};
}

0 comments on commit f221ee0

Please sign in to comment.