Matthew Bauer
a2b606f8e7
weechat: remove outputsToInstall from meta
2019-01-31 14:36:16 -05:00
Andreas Rammhold
41ee7073df
irssi: 1.1.1 -> 1.1.2
...
Fixes CVE-2019-5882 [1] and a few minor changes [2].
[1] https://irssi.org/security/html/irssi_sa_2019_01/
[2] https://irssi.org/2019/01/09/irssi-1.1.2-released/
2019-01-12 12:52:16 +01:00
Frederik Rietdijk
e5381cdece
Merge master into staging-next
2019-01-06 09:36:23 +01:00
Michael Raskin
3b152247ea
weechatScripts.weechat-matrix-bridge: 2018-05-29 -> 2018-11-19 (HTTP/2 support fix)
2019-01-05 13:21:30 +01:00
Frederik Rietdijk
070290bda7
Merge master into staging-next
2018-12-31 12:00:36 +01:00
Lars Jellema
38f828eb9c
quassel: 0.12.5 -> 0.13.0, cleanup
...
In particular we move the src into the actual quassel derivation
instead of using a `source.nix`.
Also use `fetchFromGitHub` since using `fetchurl` for github archives
is problematic.
2018-12-30 15:46:15 -05:00
volth
fed7914539
Merge branch 'staging' into make-perl-pathd
2018-12-18 17:13:27 +00:00
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