Author: eelco Date: Thu Aug 5 15:47:15 2010 New Revision: 22965 URL: https://svn.nixos.org/websvn/nix/?rev=22965&sc=1
Log: * Added weechat and updated xfce-terminal and vte. (From Graeme Caldwell <[email protected]>.) Added: nixpkgs/trunk/pkgs/applications/networking/irc/weechat/ nixpkgs/trunk/pkgs/applications/networking/irc/weechat/default.nix Modified: nixpkgs/trunk/pkgs/desktops/gnome-2.28/desktop/vte/default.nix nixpkgs/trunk/pkgs/desktops/xfce-4/applications/terminal/default.nix nixpkgs/trunk/pkgs/top-level/all-packages.nix nixpkgs/trunk/pkgs/top-level/release.nix Added: nixpkgs/trunk/pkgs/applications/networking/irc/weechat/default.nix ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nixpkgs/trunk/pkgs/applications/networking/irc/weechat/default.nix Thu Aug 5 15:47:15 2010 (r22965) @@ -0,0 +1,18 @@ +{stdenv, fetchurl, ncurses, openssl, perl, python, aspell}: + +stdenv.mkDerivation { + name = "weechat-0.3.2"; + + src = fetchurl { + url = http://weechat.org/files/src/weechat-0.3.2.tar.gz; + sha256 = "0ds548fmiv2fg69amhyg1v1rgyw51rqlp64p3rmsbm1lkcwwmivc"; + }; + + buildInputs = [ncurses perl python openssl aspell]; + + meta = { + homepage = http://http://www.weechat.org/; + description = "A fast, light and extensible chat client"; + }; +} + Modified: nixpkgs/trunk/pkgs/desktops/gnome-2.28/desktop/vte/default.nix ============================================================================== --- nixpkgs/trunk/pkgs/desktops/gnome-2.28/desktop/vte/default.nix Thu Aug 5 14:06:02 2010 (r22964) +++ nixpkgs/trunk/pkgs/desktops/gnome-2.28/desktop/vte/default.nix Thu Aug 5 15:47:15 2010 (r22965) @@ -1,10 +1,10 @@ { stdenv, fetchurl, intltool, pkgconfig, glib, gtk, ncurses, pythonSupport ? false, python}: stdenv.mkDerivation rec { - name = "vte-0.22.5"; + name = "vte-0.25.1"; src = fetchurl { - url = "mirror://gnome/desktop/2.28/2.28.2/sources/${name}.tar.bz2"; - sha256 = "1xmjlz79z3apxmq18d5qyliaky6xb1n2nxwvpzrdl4ky6hk73660"; + url = "http://ftp.gnome.org/pub/gnome/sources/vte/0.25/${name}.tar.bz2"; + sha256 = "105f5ifyg09nh5p6fw2w7c0n9wd8vw9cvwlh6zg49ibsar893qi5"; }; buildInputs = [ intltool pkgconfig glib gtk ncurses ] ++ stdenv.lib.optional pythonSupport python; Modified: nixpkgs/trunk/pkgs/desktops/xfce-4/applications/terminal/default.nix ============================================================================== --- nixpkgs/trunk/pkgs/desktops/xfce-4/applications/terminal/default.nix Thu Aug 5 14:06:02 2010 (r22964) +++ nixpkgs/trunk/pkgs/desktops/xfce-4/applications/terminal/default.nix Thu Aug 5 15:47:15 2010 (r22965) @@ -6,10 +6,10 @@ }: stdenv.mkDerivation { - name = "xfce-terminal-0.4.4"; + name = "xfce-terminal-0.4.5"; src = fetchurl { - url = http://archive.xfce.org/src/apps/terminal/0.4/Terminal-0.4.4.tar.bz2; - sha256 = "1cmkrzgi2j5dgb1jigdqigf7fa84hh9l2bclgxzn17168cwpd1lw"; + url = http://archive.xfce.org/src/apps/terminal/0.4/Terminal-0.4.5.tar.bz2; + sha256 = "14w8mhmyrq6dd9574zfvq0pymknljckq6qgcv1r6c1r22jydrzcj"; }; buildInputs = [ pkgconfig intltool libexo gtk vte libxfce4util ncurses ]; Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix ============================================================================== --- nixpkgs/trunk/pkgs/top-level/all-packages.nix Thu Aug 5 14:06:02 2010 (r22964) +++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Thu Aug 5 15:47:15 2010 (r22965) @@ -6192,6 +6192,8 @@ graphicsSupport = false; }; + weechat = callPackage ../applications/networking/irc/weechat { }; + wings = callPackage ../applications/graphics/wings { }; # I'm keen on wmiimenu only >wmii-3.5 no longer has it... Modified: nixpkgs/trunk/pkgs/top-level/release.nix ============================================================================== --- nixpkgs/trunk/pkgs/top-level/release.nix Thu Aug 5 14:06:02 2010 (r22964) +++ nixpkgs/trunk/pkgs/top-level/release.nix Thu Aug 5 15:47:15 2010 (r22965) @@ -329,6 +329,7 @@ vsftpd = linux; w3m = all; webkit = linux; + weechat = linux; wget = all; which = all; wicd = linux; _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
