summary refs log tree commit diff
path: root/pkgs/tools/networking/pcapfix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 20:50:55 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 21:42:43 +0300
commit21f17d69f61e8239870bf97edf49e594198076a8 (patch)
treeae356b0b6b29bded180153f85f31da62c3ba8ef6 /pkgs/tools/networking/pcapfix
parent55b23aeff58cd45f6c50905e481af66fed685bf1 (diff)
downloadnixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar.gz
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar.bz2
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar.lz
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar.xz
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.tar.zst
nixpkgs-21f17d69f61e8239870bf97edf49e594198076a8.zip
treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
Diffstat (limited to 'pkgs/tools/networking/pcapfix')
-rw-r--r--pkgs/tools/networking/pcapfix/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/tools/networking/pcapfix/default.nix b/pkgs/tools/networking/pcapfix/default.nix
index 0c5035f2d39..5e815f6bfd6 100644
--- a/pkgs/tools/networking/pcapfix/default.nix
+++ b/pkgs/tools/networking/pcapfix/default.nix
@@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
 
   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 ];
-    };
-}
\ No newline at end of file
+  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;
+  };
+}