summary refs log tree commit diff
path: root/pkgs/applications/networking/znc/modules.nix
diff options
context:
space:
mode:
authorChristoph Hrdinka <c.github@hrdinka.at>2016-01-12 23:11:10 +0100
committerChristoph Hrdinka <c.github@hrdinka.at>2016-02-06 13:51:23 +0100
commitce4bd7bbc6d6abf9c7f536b68663c37e75bc963c (patch)
tree10a19bd4eee2c8ecbf8f0267085e034104820762 /pkgs/applications/networking/znc/modules.nix
parent2b989f9d73187c0db9fefea0e2d70b9cb61409f4 (diff)
downloadnixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar.gz
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar.bz2
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar.lz
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar.xz
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.tar.zst
nixpkgs-ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c.zip
znc-push: 1.0.0 -> git-2015-12-07
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 9836d1fbb3b..abaabd4f409 100644
--- a/pkgs/applications/networking/znc/modules.nix
+++ b/pkgs/applications/networking/znc/modules.nix
@@ -1,7 +1,6 @@
-{ stdenv, fetchurl, fetchgit,  znc }:
+{ stdenv, fetchurl, fetchgit, znc }:
 
 let
-
   zncDerivation = a@{
     name, src, module_name,
     buildPhase ? "${znc}/bin/znc-buildmod ${module_name}.cpp",
@@ -16,25 +15,6 @@ let
 
 in rec {
 
-  push = zncDerivation rec {
-    name = "znc-push-${version}";
-    version = "1.0.0";
-    module_name = "push";
-
-    src = fetchurl {
-        url = "https://github.com/jreese/znc-push/archive/v${version}.tar.gz";
-        sha256 = "1v9a16b1d8mfzhddf4drh6rbxa0szr842g7614r8ninmc0gi7a2v";
-    };
-
-    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 ];
-    };
-  };
-
   fish = zncDerivation rec {
     name = "znc-fish-8e1f150fda";
     module_name = "fish";
@@ -70,4 +50,24 @@ in rec {
     };
   };
 
+  push = zncDerivation rec {
+    name = "znc-push-${version}";
+    version = "git-2015-12-07";
+    module_name = "push";
+
+    src = fetchgit {
+      url = "https://github.com/jreese/znc-push.git";
+      rev = "717a2b1741eee75456b0862ef76dbb5af906e936";
+      sha256 = "1lr5bhcy8156f7sbah7kjgz4g4mhkkwgvwjd2rxpbwnpq3ssza9k";
+    };
+
+    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 ];
+    };
+  };
+
 }