Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
qtbase,
|
|
qmake,
|
|
qtwayland,
|
|
wrapQtAppsHook,
|
|
wireshark-cli,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "qtwirediff";
|
|
version = "unstable-2023-03-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aaptel";
|
|
repo = "qtwirediff";
|
|
rev = "e0a38180cdf9d94b7535c441487dcefb3a8ec72e";
|
|
hash = "sha256-QS4PslSHe2qhxayF7IHvtFASgd4A7vVtSY8tFQ6dqXM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
qtwayland
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
cp -r qtwirediff.app $out/Applications
|
|
makeWrapper $out/{Applications/qtwirediff.app/Contents/MacOS,bin}/qtwirediff
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
install -Dm755 -T qtwirediff $out/bin/qtwirediff
|
|
wrapProgram $out/bin/qtwirediff \
|
|
--prefix PATH : "${lib.makeBinPath [ wireshark-cli ]}"
|
|
''
|
|
+ ''
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Debugging tool to diff network traffic leveraging Wireshark";
|
|
mainProgram = "qtwirediff";
|
|
homepage = "https://github.com/aaptel/qtwirediff";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
# error: assignment of member 'trivial' in read-only object
|
|
broken = true;
|
|
};
|
|
}
|