Skip to content

Instantly share code, notes, and snippets.

@garbas
Created May 31, 2012 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garbas/2841720 to your computer and use it in GitHub Desktop.
Save garbas/2841720 to your computer and use it in GitHub Desktop.
Index: pkgs/applications/networking/irc/weechat/default.nix
===================================================================
--- pkgs/applications/networking/irc/weechat/default.nix (revision 34299)
+++ pkgs/applications/networking/irc/weechat/default.nix (working copy)
@@ -1,18 +1,23 @@
-{stdenv, fetchurl, ncurses, openssl, perl, python, aspell}:
+{ stdenv, fetchurl, ncurses, openssl, perl, python, aspell, gnutls, zlib, curl,
+ pkgconfig, libgcrypt, ruby, lua5, tcl, guile }:
-stdenv.mkDerivation {
- name = "weechat-0.3.2";
+stdenv.mkDerivation rec {
+ version = "0.3.7";
+ name = "weechat-${version}";
src = fetchurl {
- url = http://weechat.org/files/src/weechat-0.3.2.tar.gz;
- sha256 = "0ds548fmiv2fg69amhyg1v1rgyw51rqlp64p3rmsbm1lkcwwmivc";
+ url = "http://weechat.org/files/src/${name}.tar.gz";
+ sha256 = "d4cede0aeb8e3709cc0f2c3af788381d23c365a4e40b428b7a39da5c3af4f0ae";
};
- buildInputs = [ncurses perl python openssl aspell];
+ buildInputs = [ ncurses perl python openssl aspell gnutls zlib curl pkgconfig
+ libgcrypt ruby lua5 tcl guile ];
meta = {
homepage = http://http://www.weechat.org/;
description = "A fast, light and extensible chat client";
+ license = stdenv.lib.licenses.gpl3;
+ maintainers = [ stdenv.lib.maintainers.garbas ];
+ platforms = stdenv.lib.platforms.linux;
};
}
-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment