python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / pcapfix / default.nix
blob5a8f24355c26ac87ef42a0ce5c328bc314bd3ed9
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "pcapfix";
5   version = "1.1.7";
7   src = fetchurl {
8     url = "https://f00l.de/pcapfix/pcapfix-${version}.tar.gz";
9     sha256 = "sha256-bL6/b5npdrGrdok5JK65DNh8MWUILRUmTBkz8POz4Ow=";
10   };
12   postPatch = ''sed -i "s|/usr|$out|" Makefile'';
14   meta = with lib; {
15     homepage = "https://f00l.de/pcapfix/";
16     description = "Repair your broken pcap and pcapng files";
17     license = licenses.gpl3;
18     maintainers = [ maintainers.ehmry ];
19     platforms = platforms.all;
20   };