nixpkgs/pkgs/tools/networking/pcapfix/default.nix
R. RyanTM 38ea62c7af pcapfix: 1.1.3 -> 1.1.4 (#58744)
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
2019-04-07 23:34:54 +02:00

21 lines
514 B
Nix

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