3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/pcapfix/default.nix

22 lines
539 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-04-16 13:22:59 +01:00
stdenv.mkDerivation rec {
pname = "pcapfix";
version = "1.1.4";
2016-04-16 13:22:59 +01:00
src = fetchurl {
url = "https://f00l.de/pcapfix/pcapfix-${version}.tar.gz";
sha256 = "0m6308ka33wqs568b7cwa1f5q0bv61j2nwfizdyzrazw673lnh6d";
2016-04-16 13:22:59 +01:00
};
postPatch = ''sed -i "s|/usr|$out|" Makefile'';
meta = with lib; {
homepage = "https://f00l.de/pcapfix/";
description = "Repair your broken pcap and pcapng files";
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
2021-03-04 08:14:45 +00:00
platforms = platforms.all;
};
}