summaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/znc/modules.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/znc/modules.nix')
-rw-r--r--pkgs/applications/networking/znc/modules.nix42
1 files changed, 21 insertions, 21 deletions
diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix
index 492850bda1cd..2923a30b2ef0 100644
--- a/pkgs/applications/networking/znc/modules.nix
+++ b/pkgs/applications/networking/znc/modules.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchgit, znc }:
+{ stdenv, fetchurl, fetchFromGitHub, znc }:
let
zncDerivation = a@{
@@ -20,8 +20,9 @@ in rec {
version = "git-2015-08-27";
module_name = "clientbuffer";
- src = fetchgit {
- url = meta.repositories.git;
+ src = fetchFromGitHub {
+ owner = "jpnurmi";
+ repo = "znc-clientbuffer";
rev = "fe0f368e1fcab2b89d5c94209822d9b616cea840";
sha256 = "1s8bqqlwy9kmcpmavil558rd2b0wigjlzp2lpqpcqrd1cg25g4a7";
};
@@ -29,7 +30,6 @@ in rec {
meta = with stdenv.lib; {
description = "ZNC module for client specific buffers";
homepage = https://github.com/jpnurmi/znc-clientbuffer;
- repositories.git = https://github.com/jpnurmi/znc-clientbuffer.git;
license = licenses.asl20;
maintainers = with maintainers; [ hrdinka ];
};
@@ -40,8 +40,10 @@ in rec {
version = "git-2014-10-10";
module_name = "fish";
- src = fetchgit {
- url = meta.repositories.git;
+ src = fetchFromGitHub {
+ # this fork works with ZNC 1.6
+ owner = "jarrydpage";
+ repo = "znc-fish";
rev = "9c580e018a1a08374e814fc06f551281cff827de";
sha256 = "0yvs0jkwwp18qxqvw1dvir91ggczz56ka00k0zlsb81csdi8xfvl";
};
@@ -49,8 +51,6 @@ in rec {
meta = {
description = "ZNC FiSH module";
homepage = https://github.com/dctrwatson/znc-fish;
- # this fork works with ZNC 1.6
- repositories.git = https://github.com/jarrydpage/znc-fish.git;
maintainers = [ stdenv.lib.maintainers.offline ];
};
};
@@ -60,8 +60,9 @@ in rec {
version = "git-2015-08-04";
module_name = "playback";
- src = fetchgit {
- url = meta.repositories.git;
+ src = fetchFromGitHub {
+ owner = "jpnurmi";
+ repo = "znc-playback";
rev = "8691abf75becc1f3d7b5bb5ad68dad17cd21863b";
sha256 = "0mgfajljy035051b2sx70i8xrb51zw9q2z64kf85zw1lynihzyh4";
};
@@ -69,7 +70,6 @@ in rec {
meta = with stdenv.lib; {
description = "An advanced playback module for ZNC";
homepage = https://github.com/jpnurmi/znc-playback;
- repositories.git = https://github.com/jpnurmi/znc-playback.git;
license = licenses.asl20;
maintainers = with maintainers; [ hrdinka ];
};
@@ -80,8 +80,9 @@ in rec {
version = "git-2015-02-22";
module_name = "privmsg";
- src = fetchgit {
- url = meta.repositories.git;
+ src = fetchFromGitHub {
+ owner = "kylef";
+ repo = "znc-contrib";
rev = "9f1f98db56cbbea96d83e6628f657e0d62cd9517";
sha256 = "0n82z87gdxxragcaixjc80z8bw4bmfwbk0jrf9zs8kk42phlkkc2";
};
@@ -89,27 +90,26 @@ in rec {
meta = {
description = "ZNC privmsg module";
homepage = https://github.com/kylef/znc-contrib;
- repositories.git = https://github.com/kylef/znc-contrib.git;
};
};
push = zncDerivation rec {
name = "znc-push-${version}";
- version = "git-2015-12-07";
+ version = "git-2016-10-12";
module_name = "push";
- src = fetchgit {
- url = "https://github.com/jreese/znc-push.git";
- rev = "717a2b1741eee75456b0862ef76dbb5af906e936";
- sha256 = "1ih1hf11mqgi0cfh6v70v3b93xrw83xcb80psmijcqxi7kwjn404";
+ src = fetchFromGitHub {
+ owner = "jreese";
+ repo = "znc-push";
+ rev = "cf08b9e0f483f03c28d72dd78df932cbef141f10";
+ sha256 = "0xpwjw8csyrg736g1jc1n8d6804x6kbdkrvldzhk9ldj4iwqz7ay";
};
meta = {
description = "Push notification service module for ZNC";
homepage = https://github.com/jreese/znc-push;
- repositories.git = https://github.com/jreese/znc-push.git;
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.offline ];
+ maintainers = with stdenv.lib.maintainers; [ offline schneefux ];
};
};