From 52b8fb5d4ea6f6193186591a249aa3f3b9cff70f Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 8 Jan 2018 14:59:35 +0100 Subject: [PATCH 1/2] syncthing012: mark as insecure Also adds missing meta data. --- pkgs/applications/networking/syncthing012/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/networking/syncthing012/default.nix b/pkgs/applications/networking/syncthing012/default.nix index 4b5359555f4..cd6fcc28a50 100644 --- a/pkgs/applications/networking/syncthing012/default.nix +++ b/pkgs/applications/networking/syncthing012/default.nix @@ -24,4 +24,12 @@ buildGoPackage rec { preBuild = '' export buildFlagsArray+=("-tags" "noupgrade release") ''; + + meta = { + knownVulnerabilities = [ "CVE-2017-1000420" ]; + homepage = https://www.syncthing.net/; + description = "Open Source Continuous File Synchronization"; + license = stdenv.lib.licenses.mpl20; + platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd; + }; } From 6f61b775da53bff0b9f7d9356fdb5c057a376aae Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 8 Jan 2018 15:00:07 +0100 Subject: [PATCH 2/2] syncthing013: mark as insecure --- pkgs/applications/networking/syncthing013/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/syncthing013/default.nix b/pkgs/applications/networking/syncthing013/default.nix index b6d318011aa..e1a0dc38c11 100644 --- a/pkgs/applications/networking/syncthing013/default.nix +++ b/pkgs/applications/networking/syncthing013/default.nix @@ -29,6 +29,7 @@ stdenv.mkDerivation rec { ''; meta = { + knownVulnerabilities = [ "CVE-2017-1000420" ]; homepage = https://www.syncthing.net/; description = "Open Source Continuous File Synchronization"; license = stdenv.lib.licenses.mpl20;