nixpkgs/pkgs/tools/networking/pcapfix/default.nix
R. RyanTM 508c80c888 pcapfix: 1.1.2 -> 1.1.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pcapfix/versions
2018-10-03 04:56:26 -07:00

21 lines
514 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pcapfix-1.1.3";
src = fetchurl {
url = "https://f00l.de/pcapfix/${name}.tar.gz";
sha256 = "0f9g6yh1dc7x1n28xs4lcwlk6sa3mpz0rbw0ddhajqidag2k07sr";
};
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;
};
}