From ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:11:10 +0100 Subject: [PATCH] znc-push: 1.0.0 -> git-2015-12-07 --- pkgs/applications/networking/znc/modules.nix | 42 ++++++++++---------- 1 file 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 ]; + }; + }; + }