Commit graph

488 commits

Author SHA1 Message Date
volth bb9557eb7c lib.makePerlPath -> perlPackages.makePerlPath 2018-12-15 03:50:31 +00:00
Maximilian Bosch 05882c0a74 weechatScripts.weechat-autosort: init at unstable-2018-01-11 (#51729)
Helpful weechat script to automatically keep buffers sorted.

Can be activated like this:

``` nix
weechat.override {
  configure = { ... }: {
    scripts = [
      weechatScripts.weechat-autosort
    ];
  };
}
```
2018-12-08 16:45:18 +00:00
Alyssa Ross 6dc9347712
weechat: fix bad merge
Identified in 8887e1f697 (r239097413).

9504292b1e accidentally reverted all the
changes that had been made to the weechat wrapper since
8887e1f697.

I removed the wrapper, then wrote it again, but this time taking the
code from the latest version of weechat before the bad merge.
2018-12-05 15:21:19 +00:00
Linus Heckemann 9504292b1e Merge remote-tracking branch 'origin/master' into weechat-unwrapped 2018-12-05 12:12:42 +01:00
Franz Pletz 31bd0df53d
weechatScripts.wee-slack: 2.1.1 => 2.2.0 2018-11-16 00:45:07 +01:00
Maximilian Bosch 5d9add49a2
weechat: remove obsolete aggregate-commands patch
This was the rebased version of a patch which landed in WeeChat 2.3
which is now used on nixpkgs master (see 2702772d2d).
2018-11-08 15:47:38 +01:00
Alyssa Ross 2702772d2d
weechat: 2.2 -> 2.3
Fixes https://github.com/NixOS/nixpkgs/issues/48798.
2018-10-25 11:44:22 +00:00
Alyssa Ross e20e1e5c2c weechat: add perl.withPackages (#48815)
Allows for adding Perl libraries in the same way as for Python. Doesn't
really need to be a function, since there's only one perlPackages in
nixpkgs, but I went for consistency with the python plugin.
2018-10-23 12:23:47 +02:00
adisbladis 230fd49738
weechat: Add version and meta to buildEnv package
Currently the output from `nix search` and similar tools are lacking
important meta data
2018-09-22 19:46:21 +08:00
Maximilian Bosch 61a9463498 weechatScripts.weechat-matrix-bridge: don't export `olm.lua' as script (#46582)
Loading olm.lua as weechat script with `/script load olm.lua' causes
errors like this:

```
/nix/store/43jbh7yxh8j4gjfzbvpd9clncah5dip1-weechat-matrix-bridge-2018-05-29/lib/ffi.so: undefined symbol: lua_tointeger
```

As `olm.lua' is loaded by `matrix.lua' it doesn't need to be included
manually by the weechat configuration.
2018-09-12 23:56:03 +02:00
Maximilian Bosch e2b4644f9c
weechat: fix quoting for ${} syntax
In my previous PR I missed that ${sec.foobar} (syntax to retrieve
secrets in a weechat runtime) breaks the shell evaluation.

Furthermore `;` shall be used rather than `\n` to concat scripts and the
init config.
2018-09-07 18:41:04 +02:00
Maximilian Bosch f5becfb5b0
weechatScripts.wee-slack: init at 2.1.1 2018-09-07 13:45:13 +02:00
Maximilian Bosch a8efe61412
weechat: 2.1 -> 2.2; improve package configuration
This aims to make the `weechat` package even more configurable. It
allows to specify scripts and commands using the `configure` function
inside a `weechat.override` expression.

The package can be configured like this:

```
with import <nixpkgs> { };
weechat.override {
  plugins = { availablePlugins, ... }: {
    plugins = builtins.attrValues availablePlugins;

    init = ''
      /set foo bar
      /server add freenode chat.freenode.org
    '';

    scripts = [ "/path/to/script.py" ];
  };
}
```

All commands are passed to `weechat --run-command "/set foo bar;/server ..."`.

The `plugins' attribute is not necessarily required anymore, if it's
sufficient to add `init' commands, the `plugins' will be
`builtins.attrValues availablePlugins' by default.

Additionally the result contains `weechat` and `weechat-headless`
(introduced in WeeChat 2.1) now.
2018-09-07 13:10:43 +02:00
Frederik Rietdijk a04cf8fdb7 konversation: 1.7.4 -> 1.7.5 2018-08-26 12:18:28 +02:00
Pascal Wittmann ff161dcd69
irssi: add license
see issue #43716
2018-08-06 13:06:06 +02:00
Alyssa Ross 8887e1f697
weechat: seperate weechat-unwrapped from wrapper
If I have a patch I want to apply to weechat, I can't do that with
overrideAttrs like I can with almost every other package, because that
only applies to the wrapper derivation. For other wrapped packages, one
can usually call the wrapper with any version of the derivation, but the
weechat derivation didn't expose a wrapper creation function.

Taking inspiration from other packages, particularly Firefox, I
extracted the wrapper into its own function, made the default weechat
derivation use that, and added weechat-unwrapped.

Now I can add my custom patch like this:

    (wrapWeechat
      (weechat-unwrapped.overrideAttrs (oldAttrs: {
        patches = [
          (fetchpatch {
            url = "55767f5f11.patch?full_index=1";
            sha256 = "1pkcdsby57diqds1y5hhl0fr4i8j0zax32jb0gqd36siki3lza3d";
          })
        ];
      }))
      { configure =
        { availablePlugins, ... }:
        {
          plugins = with availablePlugins; [
            (python.withPackages (packages: with packages; [ potr websocket_client ]))
          ];
        };
      })

There is a small backward incompatibility here: previously, it was
possible to get an unwrapped weechat like this:

    weechat.override { configure = null; }

This didn't seem too important to keep around since it was also possible
to get an unwrapped weechat in a much more obvious way:

    weechat.unwrapped

I could probably make it so that the first way still worked, if that
behavior turns out to really have been important.
2018-07-25 17:49:00 +01:00
Jörg Thalheim 218298b30f
Merge branch 'master' into unused5 2018-07-21 15:41:22 +01:00
volth 52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
volth 6d2857a311 [bot] treewide: remove unused 'inherit' in let blocks 2018-07-20 19:38:19 +00:00
Pascal Wittmann aa10b3127f
weechat: set name to include version
see issue #43717
2018-07-19 21:43:11 +02:00
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
Evgeny Egorochkin 05fd6a0c87 quassel: fix building against Qt-5.11 2018-06-24 20:23:21 +03:00
Yegor Timoshenko bae863ebae
Merge pull request #41095 from bkchr/qt_5_11
qt5: 5.10 -> 5.11
2018-06-15 12:25:32 +00:00
obadz 71f1f9b8ff weechat: fix binary name
(was renamed to `weechat-2.1` in af9d10a as discussed in
7cd7e4ce26 (commitcomment-29325227))
2018-06-12 23:58:38 +01:00
Bastian Köcher a95a38ff3b konversation: Fixes build with Qt 5.11 2018-06-12 14:27:11 +02:00
Ryan Mulligan af9d10a91b treewide: fix derivation names 2018-05-28 05:59:57 -07:00
Jörg Thalheim 7796075209
Merge pull request #37253 from LnL7/darwin-communi
communi: fix darwin build
2018-05-21 14:22:11 +01:00
Matthew Bauer 143978a477 treewide: remove platform assertions
linux: readd assertion
2018-05-03 13:09:20 -05:00
Ryan Mulligan 038a0c9a60 treewide: http to https 2018-04-30 21:39:20 -07:00
Michael Raskin 7cd7e4ce26 weechat: 2.0 -> 2.1 2018-04-28 22:42:38 +02:00
Andreas Rammhold bf325f1bd7
quassel: 0.12.4 -> 0.12.5 (fixes RCE & remote crash)
It was found that Quassel could be remotely crashed and had an
unauthenticated RCE vulnerability. The public annoucement can be found
on the oss-sec archive [1]. The bump to 0.12.5 is supposed fixe both issues.

[1] http://seclists.org/oss-sec/2018/q2/77
2018-04-28 11:08:42 +02:00
Pascal Wittmann 7427b58266 Switch suckless.org URLs to https
(cherry picked from commit 22f212537f475565f67a07b869f9cceea2022191)
2018-04-11 15:11:55 +02:00
Frederik Rietdijk 23741692fa Merge master into staging 2018-04-04 19:36:39 +02:00
Léo Gaspard fe21790989 weechat: forward metadata to wrapper 2018-04-04 14:58:56 +02:00
Léo Gaspard 51d9192cdd weechat: point description to documentation 2018-04-04 14:58:54 +02:00
Matthew Bauer ed2a9cf65f treewide: remove libintl hacks 2018-03-22 16:50:11 -05:00
Daiderd Jordan d7856d3c2a
ii: fix darwin build
/cc ZHF #36454
2018-03-19 23:41:49 +01:00
Daiderd Jordan 99d56c542e
communi: fix darwin build
/cc ZHF #36454
2018-03-17 16:37:56 +01:00
Timo Kaufmann 95e88ad818 bip: Fix build 2018-03-10 18:06:35 +01:00
Ryan Mulligan d492bea993 ii: 1.7 -> 1.8
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.8 with grep in /nix/store/4ml6hcsv9k8gshqc461w2vvfpq3j9lh4-ii-1.8
- found 1.8 in filename of file in /nix/store/4ml6hcsv9k8gshqc461w2vvfpq3j9lh4-ii-1.8
2018-02-26 19:12:03 -08:00
Jan Tojnar a31d98f312
tree-wide: autorename gnome packages to use dashes 2018-02-25 17:41:16 +01:00
Andreas Rammhold 4893d3514e
irssi: 1.1.0 -> 1.1.1
fixes CVE-2018-7050, CVE-2018-7051, CVE-2018-7052, CVE-2018-7053, CVE-2018-7054
2018-02-15 21:16:10 +01:00
Franz Pletz 565ba97fae
irssi: 1.0.6 -> 1.1.0 2018-01-28 18:52:25 +01:00
Andreas Rammhold f61ad23a6a irssi: 1.0.5 -> 1.0.6 (fixes CVE-2018-5206, CVE-2018-5205, CVE-2018-5208, CVE-2018-5207)
For details see [1].

[1] https://irssi.org/security/irssi_sa_2018_01.txt
2018-01-06 17:34:10 +01:00
Samuel Dionne-Riel 7b97c8c0c8 treewide: homepage+src updates (found by repology, #33263) 2018-01-05 20:42:46 +01:00
Fahad Sadah e2eb563497 weechat: 1.9.1 -> 2.0 2017-12-18 01:33:36 +00:00
Piotr Bogdan eede74b52b konversation: 1.7.2 -> 1.7.4 2017-12-05 16:07:34 +00:00
Linus Heckemann 566a16b742 weechat: default to enabling all plugins
Plain weechat is still accessible as `weechat.unwrapped`
or `weechat.override {configure = null;}`.

Also update documentation to reflect this change.
2017-11-29 15:30:56 +00:00
Maximilian Bosch 5ae373b3eb
{shout, quassel-webserver}: move to nodePackages
both packages are available at the default NPM registry.

related to #31032
2017-11-14 16:37:16 +01:00
Linus Heckemann 05f96bf376 weechat: split plugins into separate outputs
Also add a wrapper generator that allows adding the plugins back
conveniently and corresponding documentation in the package notes
section of the nixpkgs manual.
2017-11-03 10:25:22 +00:00
Piotr Bogdan c815637719 irssi: 1.0.4 -> 1.0.5
Security update, see https://irssi.org/security/irssi_sa_2017_10.txt.
2017-10-22 16:05:02 +01:00
Orivej Desh fda26c8476 Merge branch 'master' into staging
* master: (271 commits)
  pysmbc: clarify license
  pysmbc: fix license
  bazel: 0.5.4 -> 0.6.0 (#29990)
  googler: init at 3.3
  go: declare support for aarch64
  firefox-beta-bin: 56.0b5 -> 57.0b4
  spotify: 1.0.64.401.g9d720389-21 -> 1.0.64.407.g9bd02c2d-26
  gogs: 0.11.19 -> 0.11.29
  grafana: 4.5.1 -> 4.5.2
  mopidy-iris: 3.4.1 -> 3.4.9
  nextcloud: 12.0.2 -> 12.0.3
  haskell-json-autotype: jailbreak to fix build within LTS 9.x
  kore: fix up
  kore: init at 2.0.0
  glusterfs service: fix issues with useRpcbind
  tig: 2.2.2 -> 2.3.0
  haskell-hspec-core: enable test suite again
  hackage-packages.nix: automatic Haskell package set update
  librsvg: fix thumbnailer path
  awscli: 1.11.108 -> 1.11.162
  ...
2017-10-02 00:22:12 +00:00
Orivej Desh 8c70b5575c quassel: fix daemon startup
Fixes #28911
2017-09-29 15:25:13 +00:00
Franz Pletz 15189140dd
weechat: 1.9 -> 1.9.1 for CVE-2017-14727
https://lists.nongnu.org/archive/html/weechat-security/2017-09/msg00000.html
2017-09-28 13:01:49 +02:00
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00
Jörg Thalheim 0d35ce240d communi: 2016-08-17 -> 3.5.0 2017-08-29 11:46:36 +01:00
Frederik Rietdijk 62dac1bdd9 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-14 09:34:10 +02:00
Frederik Rietdijk 13bbaee21d Merge pull request #27881 from mimadrid/fix/http-https
Update homepage attributes: http -> https
2017-08-13 21:53:20 +02:00
Tuomas Tynkkynen 1ff422aa23 treewide: Add man & info outputs where necessary (instead of doc)
Because man & info pages won't be going to $doc after the next commit.
Scripted change for the files having one-package-per-file.
2017-08-11 21:32:54 +03:00
Robin Gloster b703df2d4c
epic5: add patch for openssl 1.1 2017-08-04 02:35:37 +02:00
Robin Gloster c7e74ff726
bip: add upstream patch to build with openssl 1.1 2017-08-04 02:33:05 +02:00
mimadrid 09e0cc7cc7
Update homepage attributes: http -> https
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated
https://repology.org/repository/nix_stable/problems
2017-08-03 11:56:15 +02:00
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00
Aristid Breitkreuz a2b2c1e4bd weechat: fix build (hack?) 2017-07-30 20:22:17 +02:00
Franz Pletz 1f926aa94f
irssi: 1.0.3 -> 1.0.4 for multiple CVEs
Fixes:
  * CVE-2017-10965
  * CVE-2017-10966

See https://irssi.org/security/irssi_sa_2017_07.txt.
2017-07-10 00:22:14 +02:00
Franz Pletz ed515c8080
weechat: 1.8 -> 1.9 2017-06-25 14:03:18 +02:00
Frederik Rietdijk fcd5804d7f konversation: 1.6.2 -> 1.7.2 and fix build 2017-06-25 09:56:34 +02:00
Thomas Tuegel c816bbc8a8
qt5: remove makeQtWrapper 2017-06-18 08:44:42 -05:00
Thomas Tuegel be7b7d908f
Remove kdeWrapper 2017-06-18 08:43:39 -05:00
Thomas Tuegel 7b6f8dc77f
qt5: move kdeDerivation to qt5.mkDerivation 2017-06-18 08:42:19 -05:00
Thomas Tuegel 210f688802
qt5: rename qmakeHook to qmake 2017-06-18 08:41:57 -05:00
Jörg Thalheim 130082d012
communi: fix forbidden build references 2017-06-18 12:40:58 +01:00
Franz Pletz e864345d37
irssi: 1.0.2 -> 1.0.3 (security)
See https://irssi.org/security/irssi_sa_2017_06.txt.
2017-06-07 05:59:28 +02:00
lassulus d88faa261d weechat: 1.7.1 -> 1.8 2017-05-13 14:56:59 +01:00
Aneesh Agrawal ded7953478 treewide: meta.platform -> meta.platforms 2017-05-02 19:32:02 -04:00
lassulus 839b3ce5fe weechat: 1.7 -> 1.7.1 2017-04-23 13:51:34 +02:00
Franz Pletz b00cfd49d5
irssi: 1.0.1 -> 1.0.2 for CVE-2017-7191
See https://irssi.org/security/irssi_sa_2017_03.txt.
2017-03-25 20:44:16 +01:00
ndowens d016d4fea2 shout: 0.51.1 -> 0.53.0 2017-03-18 16:05:56 -05:00
Thomas Tuegel 127bf18a35
extra-cmake-modules: Lift Qt dependency 2017-02-27 11:49:46 -06:00
Benno Fünfstück 785d303c64 sic: fix empty $out
Make needs () around variable names, or it'll interpret $out as $o followed by `ut`
2017-02-26 18:24:26 +01:00
Thomas Tuegel 72263bdd74
Remove kde4.kvirc
- No maintainer in Nixpkgs
2017-02-24 16:49:04 -06:00
Thomas Tuegel a8c58cf6ab
Remove kde4.quassel
- Already updated to KDE 5 in Nixpkgs
2017-02-24 16:48:59 -06:00
Thomas Tuegel 545e675cef
Remove kde4.konversation
- Already updated to KDE 5 in Nixpkgs
2017-02-24 16:48:59 -06:00
ndowens bd97e19d01 epic5: changed rm, cp, chmod to use pkgs.coreutils
epic5: removed pkgs from pkgs.coreutils

	modified:   pkgs/applications/networking/irc/epic5/default.nix
2017-02-18 13:17:03 -06:00
Michael Raskin 13a1d38f55 irssi: 1.0.0 -> 1.0.1 2017-02-15 15:28:24 +01:00
Daiderd Jordan 66eba1f3e0
epic5: add configure flags 2017-02-13 23:35:09 +01:00
ndowens dda70d9b06 epic5: init at 2.0.1
Added conditional to support darwin

Changed comment about buildInputs

Added 's' to optional condition
2017-02-13 15:53:12 -06:00
Frederik Rietdijk c558a5d46c hexchat: use python2 2017-02-08 19:31:35 +01:00
Franz Pletz c2257506ae
weechat: 1.6 -> 1.7 2017-01-30 04:13:16 +01:00
romildo fee579701d hexchat: 2.12.3 -> 2.12.4
- Update hexchat to version 2.12.4
- Use sources from github, as the source at
http://dl.hexchat.net/hexchat/hexchat-2.12.4.tar.xz contains invalid symbolic
links in the directory 'build-aux'
- Run 'autogen.sh' to generate 'configure' and friends, as they are not
available in the distributed sources from github.
2017-01-24 11:00:41 -02:00
Franz Pletz 1753d8c878
irssi: 0.8.21 -> 1.0.0 2017-01-09 06:29:40 +01:00
Franz Pletz c58ac7e4d6
irssi: 0.8.20 -> 0.8.21 (security)
Fixes four security vulnerabilities:

  https://irssi.org/security/irssi_sa_2017_01.txt

No CVEs were assigned yet at the time of this commit.

cc #21642
2017-01-05 17:25:07 +01:00
Michael Raskin 71c1e2ffbf irssi_otr: 1.0.1 -> 1.0.2 2017-01-04 17:46:15 +01:00
Nikolay Amiantov e908442693 kdeWrapper: allow wrapping several packages 2017-01-03 02:33:15 +03:00
Frederik Rietdijk e1939ed056 konversation: 1.6.1 -> 1.6.2 2016-11-02 10:43:44 +01:00
Jascha Geerds bdf5c0ba75 hexchat: 2.12.2 -> 2.12.3 2016-10-29 15:53:06 +02:00
aszlig 2406387fd6
quassel-webserver: Remove reference to <nixpkgs>
We already are in the <nixpkgs> repository and using <nixpkgs> within
its own tree will depend on <nixpkgs> to be set in NIX_PATH, otherwise
the evaluation will fail.

So apart from this issue it isn't even necessary to use <nixpkgs>
instead of the relative path to node-packages.nix, so let's use the
latter.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @uwap, @Mic92
2016-10-23 18:13:59 +02:00
Adam Evans 5da42092fa weechat: Fixed Darwin build issues
Build was failing with res_9_init missing on OS X. Resolved with a little help from
https://github.com/Homebrew/homebrew-core/pull/4427.
2016-10-23 00:32:17 +11:00
uwap 42e93b5f2a quassel-webserver: init at 2.1.1 2016-10-21 23:31:50 +02:00
José Romildo Malaquias 598d824198 hexchat: 2.12.1 -> 2.12.2 (#19659) 2016-10-18 20:19:27 +02:00
Profpatsch 6717213ca4 weechat: generate manpages 2016-10-14 23:30:38 +02:00
Lluís Batlle i Rossell d96c5e1fd6 Fixing irssi-otr after change of irssi ABI.
I pick the change from this pull request:
https://github.com/cryptodotis/irssi-otr/pull/60/
2016-10-04 12:29:09 +02:00
Moritz Ulrich 38dbb8008d weechat: Work around darwin linking issue 2016-10-03 23:45:16 +02:00
Moritz Ulrich 7cc3de8742 weechat: 1.5 -> 1.6 2016-10-03 16:55:17 +02:00
Alexander V. Nikolaev b3ada0bce9 irssi: 1.8.19 -> 1.8.20 (security)
https://irssi.org/security/irssi_sa_2016.txt
  CVE-2016-7044
  CVE-2016-7045
2016-09-22 03:42:50 +03:00
Kirill Boltaev bccd75094f treewide: explicitly specify gtk and related package versions 2016-09-12 18:26:06 +03:00
Andrew R. M f999e9edf8 weechat: help weechat find nix's python on darwin 2016-09-08 05:54:04 -04:00
Eelco Dolstra 445a39a23b chatzilla: 0.9.91 -> 0.9.92 2016-09-07 14:42:55 +02:00
Eelco Dolstra 02ee9d83d0 enableParallelBuild -> enableParallelBuilding 2016-09-01 10:46:47 +02:00
Ram Kromberg f254db331e qweechat: init at 2016-07-29 (#18094) 2016-08-30 14:29:45 +02:00
Franz Pletz 04ab7cee02 Merge pull request #18088 from groxxda/fix/libcommuni
libcommuni: 2016-03-23 -> 2016-08-17, communi 2016-01-03 -> 2016-08-19
2016-08-29 18:32:16 +02:00
Alexander Ried 8d26e56608 communi: 2016-01-03 -> 2016-08-19 2016-08-29 17:04:27 +02:00
Franz Pletz 4f46913bf7 wraith: disable format hardening 2016-08-25 03:55:19 +02:00
obadz 24a9183f90 Merge branch 'hardened-stdenv' into staging
Closes #12895

Amazing work by @globin & @fpletz getting hardened compiler flags by
enabled default on the whole package set
2016-08-22 01:19:35 +01:00
obadz 80dbdba6dd weechat: add python & perl to PATH so that extensions can run 2016-08-19 13:48:35 +01:00
Robin Gloster b7787d932e Merge remote-tracking branch 'upstream/master' into hardened-stdenv 2016-08-12 09:46:53 +00:00
Kranium Gikos Mendoza 9470b28743 wraith: 1.4.6 -> 1.4.7 2016-08-06 00:05:40 +08:00
Robin Gloster dd7e09114f bip: set -Wno-error=unused-result, remove --disable-pie 2016-08-04 07:49:12 +00:00
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00
Frederik Rietdijk 266fde80ca kde5.konversation: 1.6 -> 1.6.1 2016-08-02 09:00:03 +02:00
Frederik Rietdijk 65c109f887 kde5.konversation: use kdeWrapper 2016-08-02 08:49:12 +02:00
Tuomas Tynkkynen bac26e08db Fix lots of fetchgit hashes (fallout from #15469) 2016-06-03 17:17:08 +03:00
Tuomas Tynkkynen 2a73de6e6c treewide: Make explicit that 'dev' output of openssl is used 2016-05-19 10:02:23 +02:00
Vladimír Čunát 6c2fbfbd77 Merge branch 'master' into staging 2016-05-12 04:53:38 +02:00
Thomas Tuegel 6521529c23 quassel: fix SSL detection with Qt 5.6 2016-05-11 13:20:57 -05:00
Thomas Tuegel f64eaa7b14 quassel: remove qtwebkit input 2016-05-10 20:07:55 -05:00
José Romildo Malaquias 35fe868c29 hexchat: 2.10.2 -> 2.12.1 2016-05-09 07:38:31 -03:00
Thomas Tuegel f2ec142847 quassel: 0.12.3 -> 0.12.4
Security update for CVE-2016-4414 (denial of service).
2016-05-07 06:00:09 -05:00
Louis Taylor 393bde55f9 weechat: 1.4 -> 1.5 2016-05-05 18:52:35 +01:00
Nikolay Amiantov 6b6768f455 communi: move to qmakeHook
This reverts commit 0fefa9939e.
2016-04-20 18:55:46 +03:00
joachifm 001c28b63c Merge pull request #14738 from srp/irssi-description
irssi: add description
2016-04-16 05:02:48 +02:00
Scott R. Parish 31b478d692 irssi: add description
This will make it show up if people search for 'irc'
2016-04-15 11:20:14 -07:00
aszlig 0fefa9939e
communi: Fix running of {pre,post}Configure
Commit 0055c6a introduced a new preConfigure hook that sets the right
qmake path. Unfortunately the mkDerivation attributes of communi
override the whole configurePhase, so this hook isn't run at all.

This fixes the build of communi and it now successfully compiles on my
machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-04-15 05:26:02 +02:00
Eric Litak 8fe327a432 wraith: init at 1.4.6 2016-04-08 14:12:13 -07:00
James Earl Douglas 1dae112bb0 irssi: 0.8.17 -> 0.8.19
This enables [SASL authentication][1], which was added in 0.8.18.

Tested via `nix-env -f /path/to/nixpkgs -i irssi`, followed by running
`irssi`.

[1]: https://wiki.archlinux.org/index.php/Irssi#Authenticating_with_SASL
2016-04-02 16:45:10 -06:00
zimbatm 23b9d037de quassel: fix sources
Fixes changes after #14080 where the updated hash was missing.

Put the source in a common file so there is only one place to update.
2016-03-22 12:10:22 +00:00
zimbatm 3f909d8f64 Revert "quassel: 0.12.2 -> 0.12.3"
This reverts commit f2e051b29e.
2016-03-20 19:38:05 +00:00
zimbatm f2e051b29e quassel: 0.12.2 -> 0.12.3 2016-03-20 19:33:53 +00:00
zimbatm f48cde5b74 quassel: 0.12.2 -> 0.12.3 2016-03-20 15:55:17 +00:00
Christoph Hrdinka 1f51e3b8af communi: fix .desktop file's Exec path
Changes `Exec` in `communi.desktop` from `/usr/bin/communi` to
`$out/bin/communi`.
2016-03-16 15:30:01 +01:00
Profpatsch 8871c6fabc quasselDaemon: option for static linking 2016-03-10 15:17:07 +01:00
Christoph Hrdinka 48dde66cd7 communi: fix output paths 2016-03-08 13:35:03 +01:00
Aneesh Agrawal 17aefb1460 weechat: make language plugins optional, fixes #13092
They're still enabled by default, but now can be disabled.

Python has not been made optional due to the additional complexity of:
  - python2 vs python3
  - pync support on Darwin
Making Python support optional should be revisited at another time.
2016-02-19 22:56:29 +01:00
tg(x) d12399f3f5 irssi-otr: 1.0.0 -> 1.0.1 2016-02-13 05:50:17 +01:00
tg(x) 0137d4c6ff irssi-otr: fetchFromGithub 2016-02-12 18:43:45 +01:00
tg(x) 91ac4fc0a4 irssi-otr: 640e98c74b -> 1.0.0 2016-02-10 00:02:21 +01:00
Thomas Tuegel 52c0b3f33c Merge pull request #12471 from FRidh/konversation
kde5.konversation: init at 1.6
2016-01-22 06:21:24 -06:00
Frederik Rietdijk 721a091fb1 kde5.konversation: init at 1.6
Currently we have `kde4.konversation` which is version 1.5 of
Konversation.
This adds `kde5.konversation` which is version 1.6 and builds
against the latest KDE Frameworks 5.
2016-01-22 11:23:24 +01:00
Louis Taylor fb30e5fccd weechat: 1.3 -> 1.4 2016-01-21 07:20:39 +00:00
Vladimír Čunát 98218971c2 Merge #12299: make firefox-like browsers wrapped by default 2016-01-15 08:53:58 +01:00
Vladimír Čunát a8f1d40c1f all-packages: browserWrapper -> browser
- I chose to keep `browser-unwrapped` attributes so that it's much
  easier to override parameters for the browser (through `packageOverrides`).
- Aliases `browserWrapper` are retained for now, as usual.
2016-01-15 08:36:08 +01:00
Christoph Hrdinka 5e38018959 communi: init at 2016-01-03 2016-01-10 13:31:36 +01:00
Jakob Gillich 08f6f75c69 removed xchat
No release since 2010 and vulnerable to CVE-2011-5129. Hexchat is available
as a alternative.
2016-01-06 02:39:28 +01:00
Matthew O'Gorman 067467edf3
hexchat: fix enchant dependency usage at runtime.
xchat: correctly use gtkspell for spell checking.
2016-01-04 20:11:20 -05:00
Thomas Tuegel 3e600a805d quassel_qt5: fix build with Qt 5.5 2015-09-30 10:53:52 -05:00
Thomas Tuegel cf4defce2c quassel: build with Qt 5.5 2015-09-27 15:08:12 -05:00
William A. Kennington III 2664685d67 quassel: Build with fPIC to fix ssl use on gcc5 2015-09-19 16:05:38 -07:00
William A. Kennington III 64cd711f5c Merge branch 'master.upstream' into staging.upstream 2015-08-21 15:17:26 -07:00
Jude Taylor 9941e181e9 weechat: help weechat find libiconv on darwin 2015-08-21 14:02:39 -07:00
Moritz Ulrich 9346230743 weechat: 1.2 -> 1.3 2015-08-21 15:43:52 +02:00
Benjamin Staffin f4502e650b shout: init at 0.51.1
Shout is an IRC client with a nice web interface.
2015-07-31 16:08:10 -07:00
Thomas Tuegel ebe0befd86 Merge branch 'quassel' 2015-07-30 21:51:37 -05:00
Eelco Dolstra 55932c1bec Don't statically depend on cacert for certificates
This reverts commit cd52c04456 and
others.

Managing certificates (including revoking certificates and adding
custom certificates) becomes extremely painful if every package in the
system potentially depends on a different copy of cacert. Also, it
makes updating cacert rather expensive.
2015-07-31 01:34:58 +02:00
Thomas Tuegel 058f36aae7 quassel: add optional KF5 features
Also fixes conditional dependencies so that TLS is enabled.
2015-07-27 17:58:00 -05:00
Daniel Brockman d82946b2bf sic: init at 1.2 2015-07-23 17:59:33 +02:00
William A. Kennington III fbfdc139d6 Merge branch 'master.upstream' into staging.upstream 2015-07-05 18:36:16 -07:00
William A. Kennington III 06f1e2c61e quassel: Add dependency on qca for crypto 2015-07-05 16:52:56 -07:00
Jude Taylor c0e1f2e34f darwin purity: weechat 2015-06-25 16:35:18 -07:00
Jascha Geerds 51fa682655 hexchat: 2.9.6.1 -> 2.10.2 2015-06-22 12:28:28 +02:00
Jascha Geerds 3f66bb7ff2 Add myself as maintainer 2015-06-22 08:26:09 +02:00
Nixpkgs Monitor 389820e798 weechat: update from 1.1.1 to 1.2, potentially fixes CVE-2012-6047, CVE-2012-6554 2015-06-07 15:43:54 +02:00
William A. Kennington III ffd0539eba cacert: store ca-bundle.crt in $out/etc/ssl/certs instead of $out 2015-06-05 13:00:52 -07:00
William A. Kennington III 14c1e0fa1f Fix ca-bundle paths 2015-05-29 14:03:34 -07:00
Peter Simons 83096066c8 irssi: add second download mirror because irrsi.org is offline
(cherry picked from commit 79effb88a0d342ffc423b7044548c34c7f5c1aa4)
2015-05-25 00:13:52 +02:00
Domen Kožar b7f15c43da fix evals /cc @ttuegel 2015-05-10 13:46:32 +02:00
William A. Kennington III 27b435487c irssi: Fix ncurses linking 2015-04-30 18:49:28 -07:00
William A. Kennington III 85840be86e quassel: 0.11.0 -> 0.12.2 2015-04-27 12:52:20 -07:00
Rok Garbas 2fe5f5eada weechat: extending expression with extraBuildInputs
make it easily possible to extend current buildInputs using override function.
eg.:

  weechat.override { extraBuildInputs = [ pythonPackages.pync ]; }

i've removed pync since its plugin dependency which can now be added via
extraBuildInputs.
2015-03-03 09:46:23 +01:00
Thomas Tuegel 8cf78bf5f4 update various packages to use Qt 5.4 2015-02-21 11:39:20 -06:00
Rok Garbas 217f6ed01b weechat: update to 1.1.1 2015-02-05 08:40:07 +01:00
Domen Kožar 09d8b0fca6 Merge pull request #5989 from skityl/master
Updated version number
2015-01-27 10:38:26 +01:00
Thomas Tuegel 5360bbfb62 quassel: add Qt 5 version 2015-01-26 20:59:51 -06:00
skityl 400adb7ec4 Bumped version of irssi-0.8.16 to irssi-0.8.17
Signed-off-by: skityl <mopofhair@gmail.com>
2015-01-27 00:57:19 +11:00
Moritz Ulrich 4fbe003c99 Weechat: Update to 1.1.0. 2015-01-19 15:47:06 +01:00
Rok Garbas ed79420b55 weechatDevel: removing it 2014-12-10 14:59:41 +01:00
Vladimír Čunát d2688fd695 weechat-dev: mark as broken
Non-dev version is newer anyway.
2014-11-28 18:47:42 +01:00
Evgeny Egorochkin 272fe7f81c kde4.konversation: update from 1.5 to 1.5.1 2014-11-15 22:20:16 +02:00
Jonathan Rudenberg 416137fc48 Fix quassel sha256 2014-10-29 10:51:51 -04:00
William A. Kennington III 9c064a72de quassel: 0.10.0 -> 0.11.0 2014-10-27 15:16:24 -07:00
Evgeny Egorochkin 8b61f1f367 kde4.quasselWithoutKDE: update from 0.10.0 to 0.10.1 2014-10-25 20:31:54 +03:00
Eelco Dolstra 71c34a45e1 chatzilla: Update to 0.9.91 2014-10-20 09:02:26 +02:00
Eelco Dolstra 4de72baf03 chatzilla: Use firefox instead of xulrunner
Thanks to @nbp for pointing out that we don't need xulrunner anymore.
2014-10-20 09:00:38 +02:00
Aristid Breitkreuz e36c5ac7fa irssi: update from 0.8.15 to 0.8.16 2014-10-07 20:52:02 +02:00
Moritz Ulrich 53d5d55041 weechat: Update to 1.0.1. 2014-10-01 20:38:18 +02:00
Moritz Ulrich 94c08cf163 weechat: Bump to 1.0.
A happy day for all weechat-users!
2014-08-15 12:08:42 +02:00
Peter Simons 2d326e5032 Merge remote-tracking branch 'origin/master' into staging.
Conflicts:
	pkgs/desktops/e18/enlightenment.nix
2014-08-04 16:51:47 +02:00
Rok Garbas 4c659bafa3 weechatDevel: update to latest 2014-08-03 14:37:39 +02:00
Evgeny Egorochkin 760d579652 quassel: fix wrapper for all flag values 2014-07-28 16:47:30 +03:00
Mateusz Kowalczyk 7a45996233 Turn some license strings into lib.licenses values 2014-07-28 11:31:14 +02:00
Eelco Dolstra ff97b7dbe6 Merge remote-tracking branch 'origin/master' into staging 2014-07-14 17:04:55 +02:00
lethalman 1e806db8db Merge pull request #3174 from pSub/dconf-issue
Fixed settings issue.
2014-07-10 11:17:10 +02:00
Pascal Wittmann 6d13d1e521 Fixed settings issue.
The following warning was shown when I clicked on links:
'GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.'
2014-07-03 23:19:15 +02:00
Eelco Dolstra 06fc1ec34d Merge remote-tracking branch 'origin/master' into staging
Conflicts:
	pkgs/servers/serfdom/default.nix
2014-07-01 11:25:41 +02:00
Michael Raskin ce623950ad Update bip 2014-07-01 12:08:07 +04:00
Eelco Dolstra 40f7b0f9df Another attempt to eradicate ensureDir
See c556a6ea46.
2014-06-30 14:56:10 +02:00
Jason "Don" O'Conal 9b080f87e4 weechat: fix pythonpath 2014-06-02 08:10:38 +10:00
Jason "Don" O'Conal 4debe3c927 weechat: do not hard code python prefix 2014-05-15 08:27:40 +10:00
Jason "Don" O'Conal 1048dbc33c weechatDevel: update to latest 2014-05-15 08:26:33 +10:00
Jason "Don" O'Conal 1c1ce3868b weechat: support notification_center.py script 2014-05-14 14:46:39 +10:00
Jason "Don" O'Conal 1e752993db weechat: fix build on darwin 2014-05-14 11:31:43 +10:00
Eelco Dolstra 8f5ebe495c chatzilla: Update to 0.9.90.1
Also, make it work with recent Firefoxes.
2014-04-30 17:02:12 +02:00
Rok Garbas 7aa3790f34 adding development version of weechat (alongside stable) 2014-04-17 22:22:54 +01:00
Evgeny Egorochkin 37f8bcc028 kde4_prev.quasselDaemon: update from 0.9.2 to 0.10.0 2014-03-26 19:18:15 +02:00
Moritz Ulrich 8edc5f9999 weechat: Backport fix for freeze with gnutls 3.2.
Fixes /exit when using gnutls 3.2. This is a temporary solution as 3.1
isn't building right now. The next release of weechat will include this
fix.
2014-03-21 13:26:23 +01:00
Evgeny Egorochkin 76f7ea6e39 add repositories.git to several packages 2014-03-20 13:32:29 +02:00
José Romildo Malaquias 69a3372f3f Added hexchat 2014-03-07 21:52:36 +01:00
Lluís Batlle i Rossell 248161ffeb Updating irssi_otr and libotr to the latest master versions.
According to their few additional commit logs, it's worth it.

I also set libotr to use the latest libgcrypt, related to a comment
in libotr commit. They talk about a libgcrypt fix that will have
more chances to be in the latest libgcrypt.
2014-02-11 12:32:47 +01:00
Moritz Ulrich c3df9e21c0 Weechat: Update to 0.4.3 2014-02-09 12:42:26 +01:00
Evgeny Egorochkin bb0c35d982 kde4_next.konversation: update from 1.4 to 1.5 2014-02-05 20:12:53 +02:00
Nixpkgs Monitor aa36ddc188 ii: update from 1.6 to 1.7, potentially fixes CVE-2012-2187 2013-12-15 13:06:57 +02:00
Tomasz Kontusz b4c5a6f15f Rename quassel packages 2013-12-05 23:56:11 +01:00
Nixpkgs Monitor 78f33605e5 kde4.quasselDaemon: update from 0.9.0 to 0.9.2, potentially fixes CVE-2013-4422 2013-12-04 03:22:35 +02:00
Chaddaï Fouché 5fe82bafac Ooops licences replaced by licenses 2013-10-30 10:55:40 +01:00
Chaddaï Fouché 1d9632cac8 Adjust kvirc/default.nix to better use stdenv.lib 2013-10-30 10:53:34 +01:00
Chaddaï Fouché 4c9349a2c1 Adding KVIrc : a IRC Client for Qt and KDE. in kde4.kvirc 2013-10-29 23:35:29 +01:00
Eelco Dolstra db091a6662 quassel: Fix evaluation on non-Linux platforms 2013-10-07 17:11:22 +02:00
Moritz Ulrich c8b16f172a weechat: 0.4.2 and fix segfault on /exit.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
2013-10-07 13:24:54 +02:00
Evgeny Egorochkin 1d8a998c69 quassel: update to 0.9.0 2013-09-17 01:44:03 +03:00
Jason "Don" O'Conal 657ef3959b irssi: fix build on darwin
* use `gccApple` (so we can cope with `-no-cpp-precompile`)
* add `libintlOrEmpty`
2013-06-20 09:25:54 +10:00
Lluís Batlle i Rossell f2256276af irssi_otr: update to latest master 2013-06-12 22:55:57 +02:00
Lluís Batlle i Rossell ceea8a18fc weechat: update to 0.4.1 2013-06-12 14:19:00 +02:00
Lluís Batlle i Rossell 50f3625f70 irssi-otr: updating to a fork more up to date 2013-04-13 18:27:47 +02:00
Lluís Batlle i Rossell 5f2a1806e5 Adding irssi-otr. 2013-04-13 17:17:47 +02:00
Lluís Batlle i Rossell dc50bd550a Adding fish (blowfish over irc) for irssi. 2013-04-13 01:35:16 +02:00
Paolo Capriotti 03e6a6f85f Add patch to fix build for bip. 2013-03-12 18:23:55 +00:00
Rok Garbas facdbf7bef weechat: upgrade to 0.4.0 2013-01-22 12:58:18 +01:00
Evgeny Egorochkin c17fa1ebf2 Quassel: version bump to 0.7.4 2013-01-14 10:10:59 +02:00
Rok Garbas 60de7967da weechat: update and adding pycrypto support (for fish.py plugin) 2012-12-28 02:17:04 +01:00
Eelco Dolstra 5af277bbd1 Merge remote-tracking branch 'origin/master' into x-updates 2012-10-15 12:16:58 -04:00
Rok Garbas 06eff3c860 weechat: update to 0.3.9 2012-10-12 20:07:20 +02:00
Eelco Dolstra d5758c99a3 Merge remote-tracking branch 'origin/master' into x-updates
Conflicts:
	pkgs/misc/maven/maven-1.0.nix
	pkgs/os-specific/linux/xf86-input-wacom/default.nix
2012-09-26 14:51:51 -04:00
Yury G. Kudryashov f1a2d031e5 konversation-1.4 2012-08-31 12:07:09 +04:00
Lluís Batlle i Rossell 32b48d64dc Adding 'ii', irc it. 2012-07-27 22:43:40 +02:00
Shea Levy f85fc1eafb xchat: Fix build with glib-2.32.4 2012-07-15 23:15:21 -04:00
Rok Garbas f3052e14e5 weechat: update to 0.3.8 2012-07-10 15:56:23 +02:00
Cillian de Roiste 2d85463e7d Applying patch from Rok Garbas to update weechat to 0.3.7, also taking the opportunity to tidy up the style a bit.
svn path=/nixpkgs/trunk/; revision=34318
2012-06-01 22:04:08 +00:00
Arie Middelkoop 2c7845859f Added the irc proxy "bip".
svn path=/nixpkgs/trunk/; revision=32529
2012-02-23 23:47:26 +00:00
Peter Simons 7c2ca58329 xchat: fixed trivial syntax error
svn path=/nixpkgs/trunk/; revision=32516
2012-02-23 17:56:52 +00:00
Lluís Batlle i Rossell 211be0db63 Tell hydra to build xchat
svn path=/nixpkgs/trunk/; revision=32515
2012-02-23 16:20:09 +00:00
Eelco Dolstra 2eb0d0f246 * Chatzilla updated to 0.9.88.
svn path=/nixpkgs/trunk/; revision=32384
2012-02-18 17:11:57 +00:00