nixpkgs/pkgs/tools/networking/pcapfix/default.nix

21 lines
514 B
Nix
Raw Normal View History

2016-04-16 12:22:59 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pcapfix-1.1.1";
2016-04-16 12:22:59 +00:00
src = fetchurl {
url = "https://f00l.de/pcapfix/${name}.tar.gz";
sha256 = "07dfgl99iv88mgpnpfcb9y7h0zjq9fcf4sp5s7d0d3d5a5sshjay";
2016-04-16 12:22:59 +00:00
};
postPatch = ''sed -i "s|/usr|$out|" Makefile'';
meta = with stdenv.lib; {
homepage = https://f00l.de/pcapfix/;
description = "Repair your broken pcap and pcapng files";
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.linux;
};
}