summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorpacien <pacien.trangirard@pacien.net>2019-05-03 00:59:48 +0200
committerpacien <pacien.trangirard@pacien.net>2019-05-03 01:03:19 +0200
commit2e9c8649f74c85d9ee114e564dffb05a5e00fbf0 (patch)
tree013112425e756e83aba1995f00c98bfb013909a4 /pkgs
parentd0cc03e8a3f62acd8f7802f157335416718831cc (diff)
downloadnixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar.gz
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar.bz2
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar.lz
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar.xz
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.tar.zst
nixpkgs-2e9c8649f74c85d9ee114e564dffb05a5e00fbf0.zip
riot: add maintainer note
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix3
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-web.nix3
2 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
index 35ee3252c27..6209dc4b0bf 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
@@ -1,5 +1,8 @@
 { pkgs, stdenv, fetchFromGitHub, makeWrapper, makeDesktopItem, electron, riot-web }:
 
+# Note for maintainers:
+# Versions of `riot-web` and `riot-desktop` should be kept in sync.
+
 with (import ./yarn2nix.nix { inherit pkgs; });
 
 let
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
index 4a678668811..d46c886a156 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
@@ -1,5 +1,8 @@
 { lib, stdenv, fetchurl, writeText, conf ? null }:
 
+# Note for maintainers:
+# Versions of `riot-web` and `riot-desktop` should be kept in sync.
+
 let configFile = writeText "riot-config.json" conf; in
 stdenv.mkDerivation rec {
   name= "riot-web-${version}";