Joachim Fasting
b3f9b0d0cc
libgcrypt: fix typo in meta.description
2017-09-02 15:56:51 +02:00
Joachim Fasting
697cbbc617
kernelPatches.grsecurity_testing: remove
2017-09-02 15:56:49 +02:00
Joachim Fasting
5125e209a9
pkgs/top-level: remove grsec attributes
...
These have been throwing exceptions since grsec was deprecated, so
potential users should have had due to time to migrate their configs.
2017-09-02 15:56:43 +02:00
Graham Christensen
a61e631f3c
Merge pull request #28888 from disassembler/i-score
...
i-score: 1.0.0-a67 -> 1.0.0-b31
2017-09-02 09:45:03 -04:00
Samuel Leathers
d5c342c657
i-score: 1.0.0-a67 -> 1.0.0-b31
2017-09-02 09:19:59 -04:00
Andrew Cobb
9dc256099f
kupfer: init at 319 ( #28719 )
...
* kupfer: init at 319
* kupfer: wrap with wrapGAppsHook
* kupfer: fixing up runtime dependencies
* kupfer: added cobbal as maintainer
2017-09-02 14:11:10 +01:00
Kranium Gikos Mendoza
f9c2cb80a6
ekiga: make debian patches use fetchpatch
2017-09-02 23:04:58 +10:00
Kranium Gikos Mendoza
0604ea66c6
ekiga: fix build
2017-09-02 21:39:40 +10:00
Frederik Rietdijk
c2e23a4948
Merge pull request #28871 from romildo/mate
...
mate desktop: some improvements
2017-09-02 13:21:40 +02:00
Cray Elliott
6a1be3d4f4
dolphinEmuMaster: 20170730 -> 20170902
...
many bugfixes and features implemented, included accurate NAND support
and ubershaders v2
2017-09-02 03:57:10 -07:00
Domen Kožar
991654fa4a
haskell: add combinator to enable DWARF debugging
...
Tested using:
$ cat test-strip.nix
with (import ./. {});
with haskell.lib;
haskell.packages.ghc802.override {
overrides = self: super: {
microlens = enableDWARFDebugging super.microlens;
};
}
$ nix-build -A microlens test-strip.nix
$ objdump -t <path-to-so-file>
2017-09-02 11:25:50 +01:00
Austin Seipp
54ae0aa1b0
z3_opt: remove and replace with z3
...
Z3 has supported optimization features since the 4.4.x release, so this can be
removed.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Austin Seipp
583ebc086c
yices: now under GPLv3
...
This means Hydra can build it now!
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Austin Seipp
cd7b2ec77a
yosys: 2016.11.25 -> 2017.09.01
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Austin Seipp
32297e1baf
arachne-pnr: 2016.08.18 -> 2017.06.29, license switch
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Austin Seipp
e3bc5171df
icestorm: 2016.11.01 -> 2017.08.31
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Austin Seipp
fc143bf1a3
iverilog: 2016.05.21 -> 2017.08.12
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2017-09-02 04:19:11 -05:00
Unai Zalakain
3ff173ffde
jrnl: support journal encryption by default
2017-09-02 11:03:49 +02:00
Jörg Thalheim
1c0a5671a1
Merge pull request #28863 from mguentner/pybitmessage
...
pybitmessage dependency fixes & pytools 2016.2.1 -> 2017.4
2017-09-02 08:36:18 +01:00
Jörg Thalheim
34f1024a83
Merge pull request #28872 from disassembler/freewheeling
...
freewheeling: UNSTABLE -> 0.6.2
2017-09-02 08:28:14 +01:00
Jörg Thalheim
7b20952c04
Merge pull request #28726 from vyp/interception-tools
...
interception-tools: init at 0.1.1
2017-09-02 08:24:57 +01:00
Jörg Thalheim
a020ca5f35
Merge pull request #28880 from disassembler/glmark2
...
glmark2: 2016-05-11 -> 2017-09-01
2017-09-02 08:24:20 +01:00
Jörg Thalheim
aa01bed489
Merge pull request #28879 from romildo/vertex-theme
...
theme-vertex: do not explicitly indicate the gnome version
2017-09-02 08:20:22 +01:00
Jörg Thalheim
16df841ac4
Merge pull request #28881 from romildo/arc-theme
...
arc-theme: 2016-11-25 -> 2017-05-12
2017-09-02 07:58:35 +01:00
Jörg Thalheim
0cdb1fe055
Merge pull request #28877 from WilliButz/update-freeradius
...
freeradius: 3.0.14 -> 3.0.15
2017-09-02 07:54:45 +01:00
xd1le
e0b44a09b8
interception-tools: init at 0.1.1
...
The latest release of libyamlcpp in nixpkgs does not build because it
uses an older version of boost than the one in nixpkgs and therefore
expects a particular header file which does not exist in the latest
boost anymore. For this reason, a later (git) version of libyamlcpp is
used here (which actually doesn't even require boost).
The substituteInPlace in the prePatch phase is needed because libevdev
places its headers in non-standard places, meaning Nix cannot normally
find them. The `cut` command removes the first two "-I" characters from
the output of `pkg-config`. This needs to be in the prePatch phase
because otherwise Nix will patch these lines to `/var/empty`, meaning
you would have less specific replacement (in case other lines are also
patched to `/var/empty`).
I wrote the patch. (I believe it is NixOS specific.)
2017-09-02 16:17:53 +10:00
aszlig
ca1ea69972
python/pyocr: 0.4.6 -> 0.4.7
...
Upstream changes:
* Tesseract 4.00.00alpha:
* Version parsing: Ignore suffix (so '4.00.00alpha' == (4, 0, 0))
* Libtesseract: Load libtesseract.so.4 instead of libtesseract.so.3
if available
* Support for Tesseract 3.05.00:
* Builders: Split field 'tess_conf' into 'tess_flags' and 'tess_conf'
* Libtesseract: If available, use
TessBaseAPIDetectOrientationScript() instead of
TessBaseAPIDetectOS
* Libtesseract:
* Workaround: Prevents possible segfault in image_to_string() when
the target language is not available
Full upstream change log can be found at:
https://github.com/openpaperwork/pyocr/blob/b006123d1d002711b9/ChangeLog
The tesseract.patch for supporting Tesseract version 3.05.00 has been
applied upstream and we can safely drop it.
We now use substituteInPlace in conjunction with a patch to insert the
relevant store paths instead of sed, so it's less fragile whenever we
have upstream changes in handling of these paths.
I've tested this by reverting 48a941e29f
and applying a build
fix patch of Cuneiform 1.1.0 from Arch Linux, because right now
Cuneiform is an experimental version that can't be fixed on behalf of
pyocr (the reason is that pyocr needs to get a list of languages, which
doesn't work in that version anymore).
In addition to that I've successfully built paperwork-backend which by
now is the one package which depends on pyocr. However, I didn't do
runtime tests of Paperwork.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @7c6f434c
2017-09-02 05:31:22 +02:00
romildo
6c84bda496
arc-theme: 2016-11-25 -> 2017-05-12
2017-09-01 23:16:55 -03:00
Samuel Leathers
917a0e3e77
glmark2: 2016-05-11 -> 2017-09-01
2017-09-01 22:01:24 -04:00
romildo
7ef6d3ced9
theme-vertex: do not explicitly indicate the gnome version
2017-09-01 22:54:58 -03:00
aszlig
3086fc7f83
python/pyocr: Move package into python-modules
...
We already have a patch feeling lonely inside the python-modules
directory and to have everything at one place let's actually move pyocr
into its own dedicated directory so it's easier to patch it up (which
we're going to).
Right now, the package fails to build because of a few test failures, so
I haven't tested this apart from evaluating.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-09-02 03:45:13 +02:00
aszlig
40b76c8809
beets: Run tests for external plugins
...
In order to run the tests for the external plugins of beets, we need to
have beets itself as a dependency. So in order to do that, we now pass
beets without plugins and tests to the nativeBuildInputs of the plugins
so that we can run them.
As soon as the plugins are built they become part of the final beets,
which also has tests enabled, so disabling the tests for beets
derivation that is used for external plugin tests is a non-issue here
because they're going to be executed anyway.
Enabling tests for the alternatives plugin is pretty straightforward,
but in order to run tests for the copyartifacts plugin, we need to bump
the source code to the latest Git master.
The reason for this is that the version that was in use until now
required to have the beets source directory alongside of the
copyartifacts source code, but we already have beets available as a
normal dependency.
Updating copyartifacts to latest master largely consists of unit test
changes and a few Python 3 compatibility changes. However, one change
has the biggest stat, which is
sbarakat/beets-copyartifacts@1a0c281da0 .
Fortunately, the last change is just moving the implementation to a
newer API from upstream beets and by the looks of the implementation it
seems to break support for moving files. However, reverting this commit
also reveals that moving files was already broken before, so it wouldn't
matter much whether we have this version bump or not.
Tested with the following command:
nix-build -E '(import ./. {}).beets.override {
enableAlternatives = true;
enableCopyArtifacts = true;
}'
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @domenkozar, @pjones, @Profpatsch, @michalrus
2017-09-02 02:36:32 +02:00
aszlig
bd2aeb4883
beets-alternatives: Disable test suite for now
...
Regression introduced by 94351197cd
.
Running the tests results in the following traceback:
...
File ".../unittest/loader.py", line 91, in loadTestsFromName
module = __import__('.'.join(parts_copy))
File ".../test/regrtest.py", line 184, in <module>
for module in sys.modules.itervalues():
RuntimeError: dictionary changed size during iteration
The reason for this is that the test directory itself is called "test"
and the package including regrtest.py is also called "test", so the
loader tries to load tests from its own implementation.
We could fix this by changing PYTHONPATH and/or making the test
directory a proper package, but we'd still have failing tests because
beets itself is required to run the tests.
However for now I'm just removing the unit_tests kwarg in setup.py so
that we have the same behaviour as before the initially mentioned
commit.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-09-02 02:36:28 +02:00
WilliButz
11e92ecca7
freeradius: 3.0.14 -> 3.0.15
2017-09-02 01:13:29 +02:00
Samuel Leathers
232c6a00ce
freewheeling: UNSTABLE -> 0.6.2
2017-09-01 17:21:42 -04:00
romildo
f907ad9f2f
mate-notification-daemon: init at 1.18.0
2017-09-01 18:02:24 -03:00
romildo
8087940327
mate-control-center: add dependence libappindicator
2017-09-01 17:43:28 -03:00
romildo
c4dd81b81d
mate: remove icon cache
2017-09-01 17:27:24 -03:00
romildo
fbed066d4b
mate-control-center: add dependence librsvg, needed by the mate-control-center application
2017-09-01 17:22:07 -03:00
romildo
b02f227791
mate-desktop: remove unneeded dependencies gnome3.defaultIconTheme and gnome3.gnome_themes_standard
2017-09-01 17:18:59 -03:00
Matthew Bauer
f8f3384638
xcbuild: fix sdk dir name issue
...
Previously, this error was coming up in xcbuild:
ld: malformed 32-bit x.y.z version number: 1068638
It’s an interesting error because it only happens with certain hashes for the
nixpkgs sdk. For instance, on latest nixpkgs unstable channel, the hash for the
xcbuild sdk is:
/nix/store/w6mwbdaz9calyii0fyxspl51f1068638-nix.nixpkgs.sdk
that is an issue we pass -isysroot ${sdk} to clang where it will interpret that
hanging "1068638". It would probably go away as soon as the hash changes but
this hacky fix will solve the problem.
2017-09-01 15:11:12 -05:00
Michael Raskin
cc44675dfc
Merge pull request #28855 from danielfullmer/john-compile-fix
...
john: workaroud for build failure
2017-09-01 21:55:28 +02:00
Jörg Thalheim
82c493d37c
Merge pull request #28860 from dtzWill/fix/clang_34_hardening
...
clang 3.4: Disable hardening bits (#28543 )
2017-09-01 19:36:24 +01:00
Joachim F
189797c795
Merge pull request #28840 from romildo/upd.uget
...
uget: 2.0.8 -> 2.0.10
2017-09-01 18:20:00 +00:00
Maximilian Güntner
235b63d96c
pybitmessage: add numpy + pyopencl to propagatedBuildInputs
2017-09-01 20:10:50 +02:00
Maximilian Güntner
10e8214b93
pytools: 2016.2.1 -> 2017.4
2017-09-01 20:10:44 +02:00
Jörg Thalheim
e4bc14f6b7
python2Packages.jedi: fix tests
2017-09-01 19:06:49 +01:00
Jörg Thalheim
4a6295e6fb
turses: fix build
2017-09-01 18:56:04 +01:00
Jörg Thalheim
8f932af263
python.pkgs.requests-oauthlib: fix source hash
...
Was accidentally broken during merge.
2017-09-01 18:22:52 +01:00
Will Dietz
cc45a96aea
clang_34: Disable hardening bits ( #28543 )
2017-09-01 12:08:25 -05:00
wisut hantanong
86587ea95b
nodePackages.live-server : init at 1.2.0
...
fixes #28813
2017-09-01 16:47:11 +01:00
aszlig
7f99876f50
conky: Don't enable nvidiaSupport by default
...
This has been introduced in 6a6fb6d31c
.
Relying on non-free software by default is probably a bad idea. Apart
from the fact that (sane) people usually don't want to have it sitting
on their system even people who don't care will have to set
"allowUnfree" to true in order to install conky.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @canndrew, @Mic92
2017-09-01 17:35:17 +02:00
Jörg Thalheim
6443915b07
Merge pull request #28853 from disassembler/espeak
...
Espeak gcc6 build fixes
2017-09-01 16:14:43 +01:00
Daniel Fullmer
28b1170f49
john: workaroud for build failure
2017-09-01 11:05:01 -04:00
zimbatm
101ccc0629
terraform: providers list ( #28818 )
...
* terraform: move plugin index
* terraform: introduce update script for plugins
* terraform: update provider list
2017-09-01 15:49:24 +01:00
Samuel Leathers
b2fd2a8100
espeakedit: fix build with gcc6
2017-09-01 10:47:04 -04:00
Samuel Leathers
6c1364712a
espeak-classic: fix build with gcc6
2017-09-01 10:46:48 -04:00
Peter Simons
88bb678bab
Merge pull request #28827 from mpickering/ghc-head-updates
...
ghcHEAD updates
2017-09-01 16:26:08 +02:00
romildo
1f48ad8699
uget: 2.0.8 -> 2.0.10
...
- Update to version 2.0.10
- Use wrapGAppsHook to wrap binaries
- Use gstreamer-1.0
- Add dependence on libappindicator
2017-09-01 11:22:28 -03:00
Matthew Pickering
d1ce5b69c0
ghcHEAD: Add new boot packages to configuration file
2017-09-01 13:49:56 +00:00
Matthew Pickering
d13f7c54e3
Use older version of jailbreak-cabal with ghcHEAD
...
See https://github.com/peti/jailbreak-cabal/issues/13
2017-09-01 13:49:56 +00:00
Jörg Thalheim
b2e7e231ec
Merge pull request #28825 from disassembler/crrcsim
...
crrcsim: build with gcc6
2017-09-01 14:13:21 +01:00
Jörg Thalheim
e316930b77
Merge pull request #28824 from mguentner/pybitmessage
...
pybitmessage: 0.4.4 -> 0.6.2
2017-09-01 14:12:19 +01:00
Samuel Leathers
6bc775cdf6
crrcsim: build with gcc6
2017-09-01 08:56:30 -04:00
Maximilian Güntner
e9203772f2
pybitmessage: replace find_library() calls with paths
...
fixes requested changes in #26616
2017-09-01 14:51:48 +02:00
shak-mar
e3d7c4ca19
pybitmessage: 0.4.4 -> 0.6.2
...
squashed hashes:
3ee20b2de7
b9a3a3b6a2
(details -> #26616 )
2017-09-01 14:49:56 +02:00
Jörg Thalheim
4ae12f099d
Merge pull request #28823 from disassembler/crda
...
crda: fix build with gcc6
2017-09-01 13:48:54 +01:00
Samuel Leathers
e92f5b54fb
crda: fix build with gcc6
2017-09-01 08:37:50 -04:00
Roman Volosatovs
94649061c8
mopidy-iris: 3.2.0 -> 3.3.3
2017-09-01 14:22:31 +02:00
Gabriel Ebner
52eb0e0fbd
gnome3.dconf-editor: include gsettings_desktop_schemas
2017-09-01 13:07:39 +02:00
Vladimír Čunát
017561209e
chromium: try to hack around Hydra problems
...
Discussion: https://github.com/NixOS/nixpkgs/commit/e8f1ddcbd1d
2017-09-01 12:24:47 +02:00
Jörg Thalheim
7b6251b4dc
Merge pull request #28814 from loskutov/grml-zsh-unix
...
grml-zsh-config: generalize support to unix systems
2017-09-01 10:44:08 +01:00
Jörg Thalheim
84f52d20f1
Merge pull request #28807 from rardiol/openmw
...
openmw: 0.41 -> 0.42
2017-09-01 10:22:06 +01:00
Ignat Loskutov
9280937cd4
grml-zsh-config: generalize support to unix systems
2017-09-01 11:38:38 +03:00
Jörg Thalheim
d52eaf878c
python.pkgs.pytest-django: fix patch hash
2017-09-01 08:56:08 +01:00
Jörg Thalheim
dc8c7ada9a
Merge pull request #28808 from disassembler/bossa
...
bossa: fix build with gcc6
2017-09-01 06:49:10 +01:00
Jörg Thalheim
4c99d55bed
Merge pull request #28809 from eqyiel/fix-lftp
...
lftp: fix build on darwin
2017-09-01 06:47:08 +01:00
Ruben Maher
d908b6a1b7
lftp: fix build on darwin
...
Add `gettext` (which provides `-lintl`) and disable `format` hardening in order
to fix build.
2017-09-01 12:58:32 +09:30
Brad Jensen
d1e11cd41e
Regenerate quicklisp-to-nix
...
Note: Changes to overrides were necessary
2017-08-31 20:10:19 -07:00
Brad Jensen
acd05c506d
Update the ql-to-nix readme
2017-08-31 20:10:19 -07:00
Brad Jensen
d11ab25060
Add ql-to-nix programs to the ql-to-nix shell.nix
2017-08-31 20:10:18 -07:00
Brad Jensen
8f03f38ab1
Move esrap-peg into the normally defined packages
2017-08-31 20:10:18 -07:00
Brad Jensen
ebb5d33e93
Move xkeyboard into the normally defined packages
2017-08-31 20:10:18 -07:00
Brad Jensen
f0c8027ae3
Overhaul quicklisp-to-nix
...
1. Detect (and automatically handle) parasitic systems.
2. Each nix package has only one asd, and (almost) every parasitic
package inside it builds.
3. Ensure that parasitic systems are compiled.
4. Remove unnecessary testnames lisp override mechanism (the
testnae/testSystem is replaced by parasites/buildSystems).
5. Parasitic systems (if included in the system closure) become
aliases to their host package.
6. Support caching fasl files in a known directory (for faster
re-generation after modifying quicklisp-to-nix-system-info).
7. Eliminate unnecessary overrides. We're going to determine ALL
lisp dependencies correctly.
8. Don't try to "build" lisp packages with make. lispPackages should
be about bringing in a lisp library.
9. Eliminate the hand-maintained list of aliases. Parasites should
become aliases. Everything else should be a real package.
2017-08-31 20:10:18 -07:00
Samuel Leathers
04b8a85739
caneda: fix build with gcc6
2017-08-31 22:59:37 -04:00
Samuel Leathers
39154ab86f
bossa: fix build with gcc6
2017-08-31 22:44:56 -04:00
Ricardo Ardissone
a2794ee5f6
openmw: 0.41 -> 0.42
2017-08-31 22:18:27 -03:00
Jörg Thalheim
86e6e8016d
nodePackages.multi-file-swagger: init at 2.2.0
...
fixes #28737
2017-08-31 22:00:15 +01:00
Jörg Thalheim
4acdb408c0
Merge pull request #28801 from veprbl/sherpa_2_2_4
...
sherpa: 2.2.1 -> 2.2.4
2017-08-31 21:07:54 +01:00
Vladimír Čunát
69dd4f321f
Merge #28802 : rethinkdb: fix build with gcc6
2017-08-31 22:04:04 +02:00
Peter Simons
aa9bebf261
R: update package set
2017-08-31 21:59:06 +02:00
Michael Raskin
fd94a8aad1
Merge pull request #28804 from frankbo/profanity-support-for-unix
...
profanity support for unix
2017-08-31 21:56:19 +02:00
Peter Simons
e21497f268
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.5-1-gf0558f5 from Hackage revision
e8af693832
.
2017-08-31 21:54:17 +02:00
Peter Simons
2eeffa6993
hackage2nix: update list of broken builds
2017-08-31 21:54:15 +02:00
Peter Simons
91054336ce
multi-ghc-travis: update to latest git head
2017-08-31 21:42:55 +02:00
Frank
cb61e27e9e
profanity support for unix
2017-08-31 21:29:26 +02:00
Jörg Thalheim
57c40d02c1
Merge pull request #28800 from jensbin/netmask_init
...
netmask: init at 2.4.3
2017-08-31 20:15:15 +01:00
Jörg Thalheim
79527c2196
netmask: use autoreconfHook
2017-08-31 20:14:35 +01:00
Vladimír Čunát
79bca40c37
ghostscript: include X by default
...
Currently the closure-size difference between `ghostscript` and
`ghostscriptX` was ~140 vs. ~142 MB, which was wasteful, as the output
itself is ~40 MB. (x86_64-linux)
Also make ghostscriptX the full derivation, including CUPS support.
2017-08-31 21:08:27 +02:00
Dmitry Kalinkin
59b525e559
sherpa: 2.2.1 -> 2.2.4
2017-08-31 14:32:05 -04:00
Jens Binkert
1785ac4a13
netmask: init at 2.4.3
2017-08-31 20:27:00 +02:00
Simon Lackerbauer
40cbf90861
rstudio: 1.1.216 -> 1.1.351
2017-08-31 20:09:41 +02:00
Jörg Thalheim
d0e4aef32a
Merge pull request #28781 from romildo/mate
...
mate: add the MATE desktop environment
2017-08-31 18:57:20 +01:00
Jörg Thalheim
a1dc9d9d37
Merge pull request #28793 from wizzup/cleanup-pythonPackages
...
Cleanup pkgs/top-level/python-packages.nix
2017-08-31 18:09:01 +01:00
Dan Peebles
bcbcbfcfa5
terraform: add template plugin for 0.10
2017-08-31 12:35:52 -04:00
Jörg Thalheim
73d8582844
Merge pull request #28765 from afrepues/gitlab-8.17.8-and-fix-build-phase
...
Gitlab 8.17.8 and fix build phase
2017-08-31 17:35:37 +01:00
romildo
8f8d308fe1
mate: use newScope
2017-08-31 13:30:32 -03:00
romildo
a9f66285b7
mate-icon-theme: build icon cache
2017-08-31 13:29:02 -03:00
Jörg Thalheim
0b2f9d1ce1
pythonPkgs.html5lib_0_9999999: remove
...
no longer needed and fails with python3
2017-08-31 11:23:01 -05:00
Jörg Thalheim
6fb18561e7
pythonPackages.willie: remove
...
was renamed by sopel, which we already have in nixpkgs
2017-08-31 11:13:07 -05:00
Dan Peebles
e8b8864912
terraform: build all known 0.10 plugins in Hydra
2017-08-31 12:09:56 -04:00
Jörg Thalheim
038302633e
Merge pull request #28794 from afrepues/gmime-update-metadata
...
gmime: updated home and description
2017-08-31 16:57:05 +01:00
Piotr Bogdan
26ebbac2c4
rethinkdb: fix build with gcc6
2017-08-31 15:53:06 +01:00
Servilio Afre Puentes
ddaa696a4e
gmime: updated home and description
...
GMime home has moved to Github as the list of commits clearly shows,
i.e.:
b5cbc68a67
The description is updated as well to be closer to the one used there
and over at gnome.org.
2017-08-31 10:42:30 -04:00
wisut hantanong
489bfcfa0f
pythonPackages.pyshp : move to separate expression
2017-08-31 21:18:41 +07:00
wisut hantanong
b9eebaf8bb
pythonPackages.pyrr : move to separate expression
2017-08-31 21:18:41 +07:00
wisut hantanong
80ca1cae8b
pythonPackages.pygpgme : move to separate expression
2017-08-31 21:18:41 +07:00
wisut hantanong
ac35d9884b
pythonPackages.pyglet : move to separate expression
2017-08-31 21:18:40 +07:00
wisut hantanong
282216c635
pythonPackages.pygeoip : move to separate expression
2017-08-31 21:18:40 +07:00
wisut hantanong
d94d826433
pythonPackages.pyftgl : move to separate expression
2017-08-31 21:18:40 +07:00
wisut hantanong
2d7733b6c2
pythonPackages.pyfiglet : move to separate expression
2017-08-31 21:18:39 +07:00
wisut hantanong
4f43682759
pythonPackages.pyfftw : move to separate expression
2017-08-31 21:18:39 +07:00
wisut hantanong
64fb881757
pythonPackages.pyfeed : move to separate expression
2017-08-31 21:18:39 +07:00
wisut hantanong
fcba0a1cb7
pythonPackages.ROPGadget : move to separate expression
2017-08-31 21:18:39 +07:00
wisut hantanong
31b7f8701a
pythonPackages.ramlfications : move to separate expression
2017-08-31 21:18:38 +07:00
wisut hantanong
c0433265bb
pythonPackages.smugpy : move to separate expression
2017-08-31 21:18:38 +07:00
Jörg Thalheim
d83cadf841
photoqt: 1.3 -> 1.5.1
...
related to #28643
2017-08-31 15:18:30 +01:00
wisut hantanong
6ba7b4c672
pythonPackages.hypchat : move to separate expression
2017-08-31 21:18:30 +07:00
wisut hantanong
43acfe0f49
pythonPackages.tempora : move to separate expression
2017-08-31 20:58:22 +07:00
Jörg Thalheim
feea0196a7
Merge pull request #28738 from Ma27/init/weechat-matrix-bridge
...
weechat-matrix-bridge: init at 2017-03-28
2017-08-31 14:40:41 +01:00
davidak
bd79b8c9fc
bcachefs-tools: 2016-05-13 -> 2017-08-28
2017-08-31 05:39:24 -05:00
davidak
4134db36d0
linux-testing-bcachefs: init at 4.11.2017.08.23
2017-08-31 05:39:17 -05:00
Maximilian Bosch
724a69f5c4
weechat-matrix-bridge: init at 2017-03-28
2017-08-31 11:55:57 +02:00
Maximilian Bosch
f5dd3b71e8
luaffi: init at 2013-11-08
2017-08-31 11:55:57 +02:00
Jörg Thalheim
a2bb174c63
Merge pull request #28786 from lsix/fix-mysql-workbench
...
mysql-workbench: fix build with gcc6
2017-08-31 10:15:12 +01:00
Eelco Dolstra
79954b9d1f
nix: 1.11.13 -> 1.11.14
2017-08-31 11:00:09 +02:00
Valentin Robert
dbba364f64
nerdfonts: 1.0.0 -> 1.1.0
2017-08-31 10:45:31 +02:00
Jörg Thalheim
ed997b153c
Merge pull request #28756 from disassembler/pulseview-sigrok
...
pulseview and sigrok updates
2017-08-31 09:28:44 +01:00
Lancelot SIX
d9ae1b408a
mysql-workbench: fix build with gcc6
2017-08-31 10:07:18 +02:00
Jörg Thalheim
7a2c831bf1
Merge pull request #28773 from veprbl/root_disable_splash
...
root: add noSplash option
2017-08-31 08:38:04 +01:00
Jörg Thalheim
7076bc2510
Merge pull request #28776 from veprbl/dia_update
...
dia: enable on darwin, 0.97 -> 2017-06-22
2017-08-31 08:34:14 +01:00
Jörg Thalheim
13bbb084aa
Merge pull request #28774 from dpflug/milkytracker-1.01
...
milkytracker: 0.90.85 -> 1.01
2017-08-31 08:21:21 +01:00
Robert Helgesson
8763330fff
perl-Data-FormValidator: 4.85 -> 4.88
2017-08-31 09:09:23 +02:00
Robert Helgesson
43755fcf71
unifont: 10.0.04 -> 10.0.06
2017-08-31 08:57:55 +02:00
Dmitry Kalinkin
13d628d2d3
dia: 0.97.3 -> 0.97.3.20170622
2017-08-31 02:50:35 -04:00
Jörg Thalheim
3383f2f4cc
nodePackages.serve: init at 6.0.6
...
fixes #28778
2017-08-31 07:28:54 +01:00
Jörg Thalheim
95d9a6c0aa
Merge pull request #28779 from vyp/deer
...
deer: init at 1.4
2017-08-31 07:06:57 +01:00
Jörg Thalheim
6d988e5e56
deer: simpler perl patch
2017-08-31 07:05:18 +01:00
Peter Hoeg
a2de9c334a
ledger: fixed with older boost
2017-08-31 11:51:10 +08:00
Peter Hoeg
b29c64c235
ledger: requires an older boost
2017-08-31 11:49:58 +08:00
romildo
934b9bef41
mate-session-manager: init at 1.18.1
2017-08-31 00:10:20 -03:00
romildo
25f65c4339
mate-panel: init at 1.18.4
2017-08-31 00:08:40 -03:00
romildo
c1e18929f0
mate-control-center: init at 1.18.2
2017-08-31 00:07:11 -03:00
romildo
8f7d80339a
mate-settings-daemon: init at 1.18.1
2017-08-31 00:03:41 -03:00
romildo
5bbe177b3f
marco: init at 1.18.1
2017-08-31 00:01:39 -03:00
Tim Steinbach
7d482d835f
openjdk: 8u152-04 -> 8u144-01
...
Fix GCC6 build
2017-08-30 23:00:12 -04:00
romildo
7e151599f4
mate-menus: init at 1.18.0
2017-08-30 23:59:38 -03:00
romildo
dd3703e166
libmateweather: init at 1.18.1
2017-08-30 23:56:47 -03:00
romildo
20f3dfd579
libmatemixer: init at 1.18.0
2017-08-30 23:55:20 -03:00
romildo
75d643ee83
libmatekbd: init at 1.18.2
2017-08-30 23:53:16 -03:00
romildo
6c4424efb2
mate-desktop: add maintainer
2017-08-30 23:49:46 -03:00
romildo
dd230e33d6
mate: organize packages in base and extra
2017-08-30 23:48:20 -03:00
xd1le
6b05ff00e9
deer: init at 1.4
...
I wrote the patch. Unfortunately it's Nix specific because upstream
rejected it because Ubuntu Trusty's version of realpath doesn't seem to
have the `--relative-to` option. (Upstream used to use realpath before).
But for Nix, our version of realpath is recent enough. Also, upstream
will probably use realpath again anyway in May 2019 when Ubuntu Trusty
becomes unsupported, so this patch should probably be used.
2017-08-31 12:33:12 +10:00
Dmitry Kalinkin
42a4aa1e83
dia: undo persistence wrapper
...
The wrapper was introduced as workaround for #1691 . The original bug was
present in 0.97.2 but was fixed in 0.97.3.
2017-08-30 21:19:40 -04:00
Dmitry Kalinkin
9c501a05a6
dia: mark as working on darwin
2017-08-30 20:54:58 -04:00
David Pflug
7d6c3e877b
milkytracker: 0.90.85 -> 1.01
2017-08-30 20:50:17 -04:00
Dmitry Kalinkin
7c7ca7f017
root: add noSplash option
2017-08-30 19:56:53 -04:00
Profpatsch
b35972b3fa
mpvScripts.convert: fix for mpv >0.26.0
...
See https://gist.github.com/Zehkul/25ea7ae77b30af959be0#gistcomment-2189556
2017-08-31 01:23:11 +02:00
Dan Peebles
11753b3273
terraform: noop 0.10 plugins mechanism when unused
2017-08-30 18:53:46 -04:00
Daniel Peebles
b291ead4aa
Merge pull request #28729 from copumpkin/terraform-plugins
...
terraform: provide plugins for 0.10
2017-08-30 18:37:57 -04:00
Dan Peebles
80319c1238
terraform: manage 0.10 plugins with Nix
...
Also add a few starter plugins/providers
2017-08-30 18:35:26 -04:00
Robin Gloster
b09ab584f0
vidalia: remove
...
closes #28753
2017-08-30 23:59:59 +02:00
Franz Pletz
6f2fffef77
mbedtls: 2.5.1 -> 2.6.0 for CVE-2017-14032
...
https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2017-02
2017-08-30 22:36:11 +02:00
Robin Gloster
a8f0b18b9a
errbot: add glibcLocales to buildInputs
2017-08-30 22:24:34 +02:00
Servilio Afre Puentes
fae458c5e7
gitlab: fix permission issue in build phase
...
The newer DEB packages have a setuid file, creating an error when
unpacking the source during the build phase.
As dpkg doesn't have a way to pass parameters to tar, dpkg is then
told to just extract the filesystem tar file and that is unpacked by
tar directly.
Fixes #28494
2017-08-30 16:16:17 -04:00
Servilio Afre Puentes
cffb1fab3e
gitlab: 8.17.6 -> 8.17.8
...
Latest release has important bugfixes.
2017-08-30 16:16:17 -04:00
Samuel Leathers
ed6bd02a9d
sword: fix build with gcc6
2017-08-30 21:54:50 +02:00
dywedir
e2bf8cea5a
nodePackages.ocaml-language-server: init at 0.2.0
2017-08-30 21:54:18 +02:00
Piotr Bogdan
80351add5a
hhvm: 3.15.8 -> 3.21
2017-08-30 21:52:49 +02:00
Piotr Bogdan
51c247a074
hhvm: 3.15.0 -> 3.15.8
2017-08-30 21:52:49 +02:00
Piotr Bogdan
d9a0c68775
hhvm: fix build
...
Upstream re2 commit:
b94b7cd42e
Upstream bytecode.h commit:
f8a75ca667
2017-08-30 21:52:49 +02:00
Franz Pletz
94c3638377
Merge pull request #28755 from mdorman/emacs-updates
...
Semi-automated Emacs package updates
2017-08-30 21:30:03 +02:00
Ambroz Bizjak
1e5128ff5a
kdevelop: 5.1.1 -> 5.1.2
2017-08-30 21:28:12 +02:00
Samuel Leathers
d99d9026b3
k9copy: fix build with gcc6
2017-08-30 21:27:36 +02:00
Robin Gloster
8211dfb200
errbot: 4.3.3 -> 5.1.2
2017-08-30 21:25:56 +02:00
Tristan Helmich
6b9ca4599e
errbot: remove pyside dependency
2017-08-30 21:25:56 +02:00
Robin Gloster
c999094715
errbot: 4.2.2 -> 4.3.3
2017-08-30 21:25:56 +02:00
Luis Pedro Coelho
c2dc21ea85
pythonPackages.jug: 1.4.0 -> 1.6.1
...
Update Jug Python package
2017-08-30 21:24:09 +02:00
Vladimír Čunát
6b95cf646c
Merge: fixups to staging merge
...
None are large rebuilds; most are on staging already.
2017-08-30 21:17:17 +02:00
Vladimír Čunát
c07e9ba3e7
squishyball: fixup by using older ncurses
2017-08-30 21:15:08 +02:00
Vladimír Čunát
0f0bf06ac6
wyrd: fixup by using older ncurses
...
(cherry picked from commit 8f713e881e
)
2017-08-30 21:14:56 +02:00
Profpatsch
3bff3b10e1
youtube-dl: 2017.08.23 -> 2017.08.27
...
fixes (among others) mixcloud.com
2017-08-30 21:10:36 +02:00
Frederik Rietdijk
6d4bd78fad
Merge commit '2858c41' into HEAD
2017-08-30 21:07:07 +02:00
Frederik Rietdijk
56c1c527aa
Merge pull request #28758 from pbogdan/thumbor-fix-build
...
thumbor: fix build
2017-08-30 20:48:56 +02:00
Heitham Omar
6dcc77bdb8
docker: add libseccomp to build
2017-08-30 20:28:43 +02:00
Piotr Bogdan
b60c9aa950
thumbor: fix build
...
thumbor 6.3.2 requires Pillow >=3.0.0 && <4.0.0 whereas presently nixpkgs'
Pillow is at 4.x.x. An upstream commit in a yet unreleased version of thumbor
relaxes the bounds to >=3.0.0 && <5.0.0, and is included here as a patch.
2017-08-30 19:19:59 +01:00
Samuel Leathers
902dc73ee2
sigrok-cli: 0.6.0 -> 0.7.0
2017-08-30 14:04:31 -04:00
Franz Pletz
8397dd4285
Merge pull request #28432 from NeQuissimus/389_ds_base_1_3_5_19
...
389-ds-base: 1.3.5.17 -> 1.3.5.19
2017-08-30 19:57:07 +02:00
Samuel Leathers
b39462d0c3
pulseview: 0.3.0 -> 0.4.0
2017-08-30 13:52:17 -04:00
Samuel Leathers
3e1fa824df
libsigrokdecode: 0.4.1 -> 0.5.0
2017-08-30 13:52:17 -04:00
Samuel Leathers
afa5dcbd7d
libsigrok: 0.4.0 -> 0.5.0
2017-08-30 13:52:12 -04:00
Michael Alan Dorman
8374c027f9
melpa-packages: 2017-08-30
...
Removals:
- chinese-fonts-setup: removed from melpa
- chinese-pyim: removed from melpa
- mo-git-blame: source repository moved, recipe not yet updated
- org-webpage: removed from melpa
- simple-rtm: source repository moved, recipe not yet updated
- vc-fossil: recipe doesn't match repository
2017-08-30 13:45:02 -04:00
Michael Alan Dorman
e035d95a43
melpa-stable-packages: 2017-08-30
...
Removals:
- chinese-fonts-setup: removed from melpa
- chinese-pyim: removed from melpa
2017-08-30 13:45:01 -04:00
Michael Alan Dorman
28de93c5bd
org-packages: 2017-08-30
2017-08-30 13:45:01 -04:00
Michael Alan Dorman
28cb5f58cf
elpa-packages: 2017-08-30
2017-08-30 13:45:01 -04:00
Franz Pletz
e269e9d4d8
Merge pull request #28651 from NeQuissimus/evdi_1_4_1_master
...
evdi: 1.4.1 -> 1.4.1+git2017-06-12
2017-08-30 19:36:47 +02:00
Franz Pletz
a28c62d411
Merge pull request #28653 from NeQuissimus/rtlwifi_new_2017_07_18
...
rtlwifi_new: 2016-09-12 -> 2017-07-18
2017-08-30 19:36:12 +02:00
Franz Pletz
c38b8aba16
Merge pull request #28654 from NeQuissimus/rtl8723bs_2017_04_06
...
rtl8723bs: 2016-04-11 -> 2017-04-06
2017-08-30 19:35:45 +02:00
Franz Pletz
9e6bc51cf5
Merge pull request #28661 from NeQuissimus/ixgbevf_4_2_1
...
ixgbevf: 4.1.2 -> 4.2.1
2017-08-30 19:35:16 +02:00
Samuel Leathers
1f0d6f1190
ardour: fix build with gcc6
2017-08-30 19:33:05 +02:00
Grant Wu
fa5e343242
deluge: 1.3.13 -> 1.3.15
...
Change libtorrentRasterbar dependency to 1.0.x series (required for
1.3.x series)
Move Deluge out of pythonPackages (it doesn't support Python 3)
2017-08-30 19:25:30 +02:00
Tim Steinbach
4c91e32da6
linux-copperhead: 4.12.9.a -> 4.12.10.a
2017-08-30 13:17:51 -04:00
Jörg Thalheim
ee34c2e72f
Merge pull request #28752 from disassembler/xbase
...
xbase: gcc6/gcc7 patches
2017-08-30 17:51:55 +01:00
Adam Růžička
55a123a49d
notmuch-addrlookup: fix build with notmuch 0.25 ( #27691 )
2017-08-30 18:43:27 +02:00
Samuel Leathers
078abc31aa
xbase: gcc6/gcc7 patches
2017-08-30 12:32:45 -04:00
Mikael Brockman
3d107c15bd
solc: v0.4.13 -> v0.4.16 ( #28732 )
...
Also add the Z3 SMT solver as a dependency, since the new solc can use
it for checking assertions and stuff (which is awesome).
2017-08-30 18:21:17 +02:00
Michael Raskin
e36afa80e3
gfan: 0.5 -> 0.6; #28643
2017-08-30 18:19:14 +02:00
Cillian de Róiste
769c44d9d8
mixxx: patch to build with gcc6 (via debian)
...
Also, get the sqlite patch directly from bugs.gentoo.org.
2017-08-30 17:57:27 +02:00
Cillian de Róiste
5b70a2f1e5
lmms: use gcc5
...
This should be fixed in 1.2, which has had a few release candidates
already.
2017-08-30 17:57:27 +02:00
Cillian de Róiste
28856eb23b
Lmms: fix homepage URL
2017-08-30 17:57:27 +02:00
Dan Peebles
b8538c6801
chromedriver: fix on Darwin
...
A refactor broke it by forcing a bunch of Linux-specific dependencies on
Darwin that only get used in the patchelf invocation.
2017-08-30 11:49:34 -04:00
Michael Raskin
4ef4a17f77
nilfs-utils: fix build
...
Just kill .libs to make sure patchelf does shrink-rpath correctly
Complain in comments that patchelf/#98 is still not used by stdenv
2017-08-30 17:54:04 +02:00
Michael Raskin
596daff250
Merge pull request #28751 from disassembler/xplanet
...
xplanet: gcc6 patch
2017-08-30 17:22:15 +02:00
Samuel Leathers
029f40a552
xplanet: gcc6 patch
2017-08-30 11:04:26 -04:00
Cillian de Róiste
0bb2d3112b
Calf: use gcc5 to fix the build
...
There hasn't been a release in a few years, but they're working on it.
2017-08-30 16:48:55 +02:00
Cillian de Róiste
261386a39e
Calf: fix homepage
2017-08-30 16:48:55 +02:00
David Pflug
71d83eac88
gargoyle: 2017-05-10 -> 2018-08-27
2017-08-30 16:20:09 +02:00
zimbatm
998f516fb0
terraform: only expose maj.min to top-level
...
We shouldn't encourage users to depend on a tiny release.
2017-08-30 16:02:24 +02:00
Peter Hoeg
30c85e85ae
bundler: 1.15.3 -> 1.15.4
2017-08-30 21:05:45 +08:00
Peter Simons
8a0566e4c8
Merge pull request #28744 from LumiGuide/checkUnusedPackages
...
haskell: add the checkUnusedPackages function including docs
2017-08-30 15:05:21 +02:00
Bas van Dijk
e410a191a1
haskell: add the checkUnusedPackages function including docs
2017-08-30 14:40:54 +02:00
Tim Steinbach
9fd315a62f
vscode: Skip 'Getting Started'
2017-08-30 07:59:42 -04:00
Tim Steinbach
fab79d08e9
linux: 4.9.45 -> 4.9.46
2017-08-30 07:59:42 -04:00
Tim Steinbach
a27c6c7374
linux: 4.12.9 -> 4.12.10
2017-08-30 07:59:42 -04:00
Frederik Rietdijk
b2686dce25
Merge pull request #27636 from bendlas/update-pypy
...
pypy: 5.6 -> 5.8
2017-08-30 13:57:24 +02:00
Andrew Cann
fbc3c69664
hivemind: Fix boost version dependency
2017-08-30 13:15:51 +02:00
Franz Pletz
6b3982668f
Merge pull request #28733 from lsix/update_datamash
...
datamash: 1.1.1 -> 1.2
2017-08-30 13:15:01 +02:00
Franz Pletz
90a6ed72b4
Merge pull request #28736 from lsix/update_pspp
...
pspp: 0.8.3 -> 1.0.1
2017-08-30 13:14:49 +02:00
William Casarin
dfeb8bd4b5
stagit: init at 0.6
...
a git static site generator
2017-08-30 13:12:17 +02:00
Mikael Brockman
dd2d140241
hsevm: v0.3.2 -> v0.6.4
2017-08-30 13:08:36 +02:00
Franz Pletz
60bdca87e3
Merge pull request #28671 from lsix/update_gpg2
...
gnupg: 2.1.23 -> 2.2.0
2017-08-30 13:06:57 +02:00
Tim Steinbach
693d2403f1
docker-edge: 17.06 -> 17.07
2017-08-30 13:04:45 +02:00
Graham Christensen
128cdeffd0
compiz: drop
2017-08-30 06:59:20 -04:00
Robert Helgesson
7978edad53
python-PyICU: disable for darwin
...
The build errors out on macOS.
2017-08-30 11:55:19 +02:00
Lancelot SIX
e8e0cb193e
pspp: 0.8.3 -> 1.0.1
2017-08-30 10:01:32 +02:00
William Casarin
d277d5288c
trezord: 1.2.0 -> 1.2.1
...
Progress on: #28643
2017-08-30 00:33:20 -07:00
Lancelot SIX
9061a4e759
datamash: 1.1.1 -> 1.2
...
See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00008.html
for release infrmation
2017-08-30 09:25:08 +02:00
Lancelot SIX
1e5b5bd719
gnupg: 2.1.23 -> 2.2.0
...
See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00012.html
for release information
2017-08-30 09:15:02 +02:00
Peter Hoeg
8988f8589a
httraqt: init at 1.4.9
2017-08-30 15:02:39 +08:00
Jörg Thalheim
8df6c177a3
Merge pull request #28728 from canndrew/conky-nvidia
...
conky: enable nvidia support
2017-08-30 07:43:51 +01:00