Bjørn Forsman
bd01fad0ed
Captialize meta.description of all packages
...
In line with the Nixpkgs manual.
A mechanical change, done with this command:
find pkgs -name "*.nix" | \
while read f; do \
sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
done
I manually skipped some:
* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00
Tobias Geerinckx-Rice
723439564f
zstd: 0.6.1 -> 0.7.0
...
Changes: https://github.com/Cyan4973/zstd/releases/tag/v0.7.0
2016-06-16 21:20:00 +02:00
Tobias Geerinckx-Rice
1212d921c1
lrzip: 0.621 -> 0.630
...
Changes: http://ck-hack.blogspot.com/2016/06/lrzip-0630.html
2016-06-12 00:28:55 +02:00
Peter Simons
8e462995ba
Bring my stdenv.lib.maintainers user name in line with my github nick.
2016-05-16 22:49:55 +02:00
Tobias Geerinckx-Rice
f2c7f9a677
zstd: 0.6.0 -> 0.6.1
2016-05-14 16:01:33 +02:00
Vladimír Čunát
68b4c4caa7
bzip2: greatly simplify by using autoconfiscated version
...
I don't know there's still need for linkStatic or cygwin special-casing,
but I left it there for now.
2016-05-05 08:31:09 +02:00
Vladimír Čunát
1dc36904d8
Merge #14920 : windows improvements, mainly mingw
2016-05-05 08:30:19 +02:00
Vladimír Čunát
7a005601d4
Merge branch 'master' to resolve conflicts
2016-05-05 08:25:38 +02:00
Tuomas Tynkkynen
aadaa91379
Merge remote-tracking branch 'upstream/master' into staging
...
Conflicts:
pkgs/applications/networking/browsers/vivaldi/default.nix
pkgs/misc/emulators/wine/base.nix
2016-05-03 23:12:48 +03:00
Franz Pletz
50884acd84
lzip: 1.16 -> 1.17
2016-05-03 16:15:20 +02:00
Lancelot SIX
8a67abb820
pkgs.gzip: 1.7 -> 1.8
...
See http://lists.gnu.org/archive/html/info-gnu/2016-04/msg00012.html
2016-04-28 19:36:27 +02:00
Vladimír Čunát
91f2b9ed66
bzip2: fix on mingw
...
The whole expression is rather a mess, mainly due to upstream
often behaving badly with non-standard configurations.
2016-04-23 10:52:01 +02:00
Aneesh Agrawal
a01fdb3ad4
gzip: 1.6 -> 1.7 ( close #14828 )
2016-04-20 16:40:53 +02:00
Tobias Geerinckx-Rice
550b878e46
zstd: 0.5.1 -> 0.6.0
...
Changes:
- Stronger high compression modes
- Changed : highest compression modes require --ultra command to
remove memory restrictions
- API: ZSTD_getFrameParams() provides size of decompressed content
- Fixed: zstd cli return error code > 0 and removes dst file artifact
when decompression fails
- Various fixes and small performance improvements
2016-04-14 02:37:53 +02:00
Vladimír Čunát
39ebb01d6e
Merge branch 'staging', containing closure-size #7701
2016-04-13 09:25:28 +02:00
Franz Pletz
2a021baf21
pbzip2: 1.1.12 -> 1.1.13
2016-04-12 15:51:32 +02:00
Vladimír Čunát
ab15a62c68
Merge branch 'master' into closure-size
...
Beware that stdenv doesn't build. It seems something more will be needed
than just resolution of merge conflicts.
2016-04-01 10:06:01 +02:00
Vladimír Čunát
b336ed89e6
zopfli: disable parallel building
...
It was failing often, e.g.:
https://hydra.nixos.org/build/32101335/nixlog/1/raw
2016-03-23 20:20:36 +01:00
Luca Bruno
dcfca100ec
Merge pull request #12525 from knupfer/ngx_brotli
...
add nginxModules.brotli
2016-03-11 11:05:21 +01:00
Vladimír Čunát
09af15654f
Merge master into closure-size
...
The kde-5 stuff still didn't merge well.
I hand-fixed what I saw, but there may be more problems.
2016-03-08 09:58:19 +01:00
Frederik Rietdijk
40ca841c5c
Merge pull request #13124 from FRidh/buildPythonApplication
...
buildPythonApplication: use new function for Python applications
2016-02-23 16:02:10 +01:00
Tobias Geerinckx-Rice
74acc3ad93
zstd: 0.5.0 -> 0.5.1
...
Changes:
- New: Optimal parsing => Very high compression modes, thanks to @inikep
- Changed: Dictionary builder integrated into libzstd and zstd cli
- Changed (!): zstd cli now uses "multiple input files" as default mode. See zstd -h.
- Fix: high compression modes for big-endian platforms (#123 )
- New: zstd cli : -t | --test command
2016-02-22 19:42:27 +01:00
Frederik Rietdijk
4d06bf70f4
buildPythonApplication: use new function for Python applications
2016-02-19 13:16:41 +01:00
Vladimír Čunát
e9520e81b3
Merge branch 'master' into staging
2016-02-17 10:06:31 +01:00
Vladimír Čunát
d039c87984
Merge branch 'master' into closure-size
2016-02-14 08:33:51 +01:00
Dan Peebles
6f2ab634f9
bzip2: fix shared library generation on darwin
...
This fixes #6504
(cherry picked from commit 31ab7d38f2
)
2016-02-13 17:20:44 +01:00
Dan Peebles
31ab7d38f2
bzip2: fix shared library generation on darwin
...
This fixes #6504
2016-02-13 10:31:36 -05:00
Bojan Nikolic
9f2cc14107
bzip2: Fix cross-compilation
...
The cross-compiling the "patchPhase" from the parent attribute set was
preventing application of patches specified in the crossDrv. Fix by
turning patchPhase into postPatch.
2016-02-11 15:31:16 +01:00
Tobias Geerinckx-Rice
ce99feec68
zstd: 0.4.7 -> 0.5.0
...
“New: dictionary builder tool
Changed: advanced API for streaming and dictionary compression
Improved: better compression of small data.”
2016-02-08 00:37:11 +01:00
Vladimír Čunát
54299b60c4
Merge #12779 : Mass replace pkg}/bin
-style strings
...
... to refer to correct outputs
2016-02-03 17:25:22 +01:00
Vladimír Čunát
ae74c356d9
Merge recent 'staging' into closure-size
...
Let's get rid of those merge conflicts.
2016-02-03 16:57:19 +01:00
Tuomas Tynkkynen
e97e690244
treewide: Mass replace 'xz}/bin' to refer the 'bin' output
2016-02-01 20:46:28 +02:00
Tobias Geerinckx-Rice
fa247fa213
zstd: init at 0.4.7
2016-01-27 02:45:20 +01:00
Tobias Geerinckx-Rice
7d2f8eca1b
Revert "lz4: be just a bit more reproducible"
...
This reverts commit efc359c231
,
as it is no longer needed.
See: efc359c231 (commitcomment-15680107)
2016-01-26 16:48:29 +01:00
Tobias Geerinckx-Rice
efc359c231
lz4: be just a bit more reproducible
2016-01-26 06:13:05 +01:00
Tobias Geerinckx-Rice
ac33b4724a
More version attribute tidying where maintainers |= nckx
2016-01-25 20:08:34 +01:00
Tobias Geerinckx-Rice
9fb8020e4e
Add version attribute where maintainers |= nckx
...
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00
knupfer
05bf6b2b10
brotliUnstable: init at bed93862
2016-01-21 22:09:23 +01:00
Vladimír Čunát
313faf07ba
brotli: init at 0.3.0
2016-01-20 22:50:26 +01:00
Vladimír Čunát
716aac2519
Merge branch 'staging' into closure-size
2016-01-19 09:55:31 +01:00
Vladimír Čunát
2d0893088f
Merge branch 'master' into staging
2016-01-15 13:43:57 +01:00
Tobias Geerinckx-Rice
685b2ebb60
xdelta: add longDescription
2016-01-11 20:34:36 +01:00
Tobias Geerinckx-Rice
6aa786d1d6
xdeltaUnstable: init at 3.1.0
...
This will eventually become the new stable branch (as unstable ones
are wont to do), but is worth having if you want to patch yesterday's
‘large’ files today, or need to apply patches already created with it.
“First release of the 3.1.x series. This is taken from the
"64bithash" branch.
- Adds support for -B values greater than 2GB, enabled by
-DXD3_USE_LARGESIZET=1 variable. [Enabled in nixpkgs.]
- Adds new performance and speed regression test, written in #Golang.
[Not enabled in nixpkgs.]
When compiled for large sizes, xdelta3 uses a 64bit checksum function.
This impacts both compression and speed.
Relative to 3.0.11, the new branch is currently 3-5% slower and
has 1-2% worse compression. Performance will be addressed in
future 3.1.x releases.”
2016-01-11 20:34:36 +01:00
Tobias Geerinckx-Rice
5e9b49dd53
xdelta: add lzmaSupport; enable by default
2016-01-11 18:35:50 +01:00
Tobias Geerinckx-Rice
83289318f0
xdelta: 3.0.10 -> 3.0.11
2016-01-11 18:35:50 +01:00
Vladimír Čunát
b1acaffe67
Merge branch 'master' into staging
2016-01-05 10:28:58 +01:00
Tobias Geerinckx-Rice
d030b608dd
zopfli: build & install zopflipng, shared libraries, READMEs
2016-01-03 00:24:28 +01:00
Tobias Geerinckx-Rice
2ba8ae8d97
zopfli: 1.0.0 -> 1.0.1 + bug fixes
...
Maintain & tidy up `meta` while we're here.
2016-01-03 00:24:28 +01:00
janus
9897b35661
FreeBSD: patch expat, kerberos, libedit, ossp-uuid, lz4, sharutils, add libelf-freebsd
2016-01-01 17:01:13 +00:00
janus
a1ade02cdc
FreeBSD support
2016-01-01 16:59:48 +00:00