Commit Graph

25196 Commits

Author SHA1 Message Date
Léo Gaspard
905b03bce2 chromium: fix build on aarch64
chromium build on aarch64 failed with:
```
FAILED: obj/skia/skia/convolver_neon.o
g++ -MMD -MF obj/skia/skia/convolver_neon.o.d -DV8_DEPRECATION_WARNINGS -DUSE_UDEV -DUSE_AURA=1 -DUSE_GLIB=1 -DUSE_NSS_CERTS=1 -DUSE_X11=1 -DNO_TCMALLOC -DFULL_SAFE_BROWSING -DSAFE_BROWSING_CSD -DSAFE_BROWSING_DB_LOCAL -DCHROMIUM_BUILD -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DSK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS -DSK_HAS_PNG_LIBRARY -DSK_HAS_WEBP_LIBRARY -DSK_HAS_JPEG_LIBRARY -DSK_SUPPORT_GPU=1 -DSK_FREETYPE_MINIMUM_RUNTIME_VERSION=\(\(\(FREETYPE_MAJOR\)\ \*\ 0x01000000\)\ \|\ \(\(FREETYPE_MINOR\)\ \*\ 0x00010000\)\ \|\ \(\(FREETYPE_PATCH\)\ \*\ 0x00000100\)\) -DSK_GAMMA_EXPONENT=1.2 -DSK_GAMMA_CONTRAST=0.2 -DSK_DEFAULT_FONT_CACHE_LIMIT=20971520 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32 -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -DFT_CONFIG_CONFIG_H=\"freetype-custom-config/ftconfig.h\" -DFT_CONFIG_MODULES_H=\"freetype-custom-config/ftmodule.h\" -DFT_CONFIG_OPTIONS_H=\"freetype-custom-config/ftoption.h\" -DPDFIUM_REQUIRED_MODULES -DCHROMIUM_RESTRICT_VISIBILITY -DUSE_LIBJPEG_TURBO=1 -DU_USING_ICU_NAMESPACE=0 -DU_ENABLE_DYLOAD=0 -DU_STATIC_IMPLEMENTATION -DICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE -DUCHAR_TYPE=uint16_t -DUSE_SYSTEM_ZLIB=1 -I../.. -Igen -I../../skia/config -I../../skia/ext -I../../third_party/skia/include/c -I../../third_party/skia/include/config -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/encode -I../../third_party/skia/include/gpu -I../../third_party/skia/include/images -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pdf -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../third_party/skia/src/gpu -I../../third_party/skia/src/sksl -I../../third_party/skia/include/codec -I../../third_party/skia/include/private -I../../third_party/skia/include/client/android -I../../third_party/skia/src/codec -I../../third_party/skia/src/core -I../../third_party/skia/src/image -I../../third_party/skia/src/images -I../../third_party/skia/src/opts -I../../third_party/skia/src/pdf -I../../third_party/skia/src/ports -I../../third_party/skia/src/shaders -I../../third_party/skia/src/shaders/gradients -I../../third_party/skia/src/sfnt -I../../third_party/skia/src/utils -I../../third_party/skia/src/lazy -I../../third_party/skia/third_party/gif -I../../third_party/skia/src/effects/gradients -Igen/shim_headers/libpng_shim -Igen/shim_headers/zlib_shim -I../../third_party/freetype/include -I../../third_party/freetype/src/include -I../../third_party/harfbuzz-ng/src -I../../third_party/libjpeg_turbo -I../../third_party/fontconfig/src -I../../third_party/icu/source/common -I../../third_party/icu/source/i18n -I../../third_party/sfntly/src/cpp/src -fno-strict-aliasing --param=ssp-buffer-size=4 -fstack-protector -Wno-builtin-macro-redefined -D__DATE__= -D__TIME__= -D__TIMESTAMP__= -funwind-tables -fPIC -pipe -pthread -fno-omit-frame-pointer -g0 -fno-builtin-abs -fvisibility=hidden -Wno-unused-local-typedefs -Wno-maybe-uninitialized -Wno-deprecated-declarations -fno-delete-null-pointer-checks -Wno-missing-field-initializers -Wno-unused-parameter -O2 -fno-ident -fdata-sections -ffunction-sections -isystem/nix/store/smmxgfkqaqqh43d5gmv5p3abcq19hkzy-glib-2.56.0-dev/include/glib-2.0 -isystem/nix/store/yn3bbw1sxg19h07wzn16k0ja58wr9yiz-glib-2.56.0/lib/glib-2.0/include -isystem/nix/store/f82jgynysk9mvhyfavfzims41zkskb3c-libpng-apng-1.6.34-dev/include/libpng16 -isystem/nix/store/56i89kfi2nmjrv8hifsz6zikr6pq1avw-zlib-1.2.11-dev/include -std=gnu++14 -fno-exceptions -fno-rtti -nostdinc++ -isystem../../buildtools/third_party/libc++/trunk/include -isystem../../buildtools/third_party/libc++abi/trunk/include -fvisibility-inlines-hidden -Wno-narrowing -c ../../skia/ext/convolver_neon.cc -o obj/skia/skia/convolver_neon.o
../../skia/ext/convolver_neon.cc: In function 'int32x4_t skia::AccumRemainder(const unsigned char*, const Fixed*, int)':
../../skia/ext/convolver_neon.cc:26:65: error: cannot convert '<brace-enclosed initializer list>' to 'int32x4_t {aka __vector(4) int}' in return
   return {remainder[0], remainder[1], remainder[2], remainder[3]};
                                                                 ^
```

The following patch appears to fix this build issue.

Source: b84682f31d%5E%21/#F0
Suggested-by: @dezgeg
2018-04-29 18:38:38 +03:00
Léo Gaspard
a07881c8b8 chromium: skia patch appears to be still needed with 66 on aarch64
Cc @chaoflow @bendlas
Replaces #39628
2018-04-29 18:38:38 +03:00
Pascal Wittmann
8d6d1363de
Merge pull request #39677 from dywedir/tiled
tiled: 1.1.4 -> 1.1.5
2018-04-29 16:56:55 +02:00
viric
613e1485ad
Merge pull request #39672 from pstn/gnunet-git
gnunet: Add gnunet_git.
2018-04-29 16:41:41 +02:00
Vladyslav Mykhailichenko
e55677bffa tiled: 1.1.4 -> 1.1.5 2018-04-29 17:09:11 +03:00
Jan Tojnar
0e1147d137
Merge pull request #37915 from jtojnar/gimp-2.10
GIMP 2.10
2018-04-29 15:12:27 +02:00
Jan Tojnar
5c4b687a88
gimp-with-plugins: filter out broken plugins from default selection 2018-04-29 14:29:36 +02:00
Jan Tojnar
4779556ed1
gimpPlugins.texturize: mark as broken 2018-04-29 14:23:46 +02:00
Jan Tojnar
518fb36dcb
gimpPlugins.focusblur: mark as broken 2018-04-29 14:23:36 +02:00
Philipp Steinpaß
49003e880c gnunet: Add gnunet_git. 2018-04-29 13:26:40 +02:00
Joachim Fasting
9df35787f1
tor-browser-bundle-bin: allow unset XAUTHORITY
Apparently this can happen on e.g., fedora.

Closes https://github.com/NixOS/nixpkgs/issues/38671
2018-04-29 12:17:30 +02:00
Jan Tojnar
4f420c6802
gmic: 2.2.1 → 2.2.2 + build gimpPlugin 2018-04-29 09:14:19 +02:00
Jan Tojnar
63a234c4a7
ufraw: build gimp plugin 2018-04-29 08:39:06 +02:00
Jan Tojnar
882682827a
gimpPlugins.lqrPlugin: use liblqr1 from pkgs 2018-04-29 08:39:06 +02:00
Jan Tojnar
b0d3ed3484
gimp: 2.8.22 → 2.10.0 2018-04-29 08:39:05 +02:00
Peter Hoeg
7b6433b0eb gcalcli: pin older versions of needed python packages 2018-04-29 13:00:46 +08:00
Peter Hoeg
3f454bc90f toxic: 0.7.2 -> 0.8.2 2018-04-29 07:52:54 +08:00
Peter Hoeg
88454d73b0 qtox: 1.13.1 -> 1.15.0 2018-04-29 07:52:54 +08:00
Peter Hoeg
058df14f81 ratox: 0.4 -> 0.4.20180303 2018-04-29 07:52:54 +08:00
xeji
3c4efe448d xen_4_10: fix build (qemu-xen memfd patch) 2018-04-29 00:58:50 +02:00
Michael Raskin
f5268994be weechat-matrix-bridge: 2018-01-10 -> 2017-03-29 2018-04-28 22:42:39 +02:00
Michael Raskin
7cd7e4ce26 weechat: 2.0 -> 2.1 2018-04-28 22:42:38 +02:00
Jan Tojnar
f92d9364e1
Merge pull request #35410 from jtojnar/syncthing-gtk-0.9.3
syncthing-gtk: 0.9.2.7 → 0.9.3
2018-04-28 22:02:00 +02:00
Jan Tojnar
094683ac36
syncthing-gtk: 0.9.2.7 → 0.9.3.1 2018-04-28 22:00:32 +02:00
ajs124
ba1b2ef243 makemkv: 1.10.8 -> 1.12.2, switch from qt4 to qt5 2018-04-28 15:22:48 +02:00
Jörg Thalheim
68e75fbb53
Merge pull request #39577 from veprbl/pr/pythia_8.235
pythia: 8.226 -> 8.235, enable lhapdf6 plugin
2018-04-28 11:44:37 +01:00
aszlig
93042b7376
kmymoney: init at 5.0.1
I tried to use -DENABLE_SQLCIPHER and also passed the right directories
to the Qt 5 source of the QSQLiteDriver but CMake then failed to run
qt4_automoc, by which I'd imply that SQLCipher is not maintained
anymore (after all KMyMoney using qgpgme as well, which doesn't require
sources).

Another odd thing is that CMake reports that the weboob plugin is
disabled, but after inspecting it turns out that the reporting is just
wrong. This is already fixed upstream but not yet released in
KDE/kmymoney@8b086cf921.

In addition of running the upstream test suite I have manually tested a
few things in a VM by using the following Nix expression:

  (import <nixpkgs/nixos> {
    configuration = { pkgs, ... }: {
      environment.systemPackages = with pkgs; [
        kmymoney aqbanking gwenhywfar libchipcard python2Packages.weboob
        kgpg
      ];
      users.users.test.isNormalUser = true;
      virtualisation.diskSize = 4096;
      virtualisation.memorySize = 2048;
      services.xserver = {
        enable = true;
        inherit ((import <nixpkgs/nixos> {}).config.services.xserver) layout;
        displayManager.sddm.enable = true;
        displayManager.sddm.autoLogin.enable = true;
        displayManager.sddm.autoLogin.user = "test";
        desktopManager.default = "plasma5";
        desktopManager.plasma5.enable = true;
      };
    };
  }).vm

The things I have tested in particular are:

  * Basic startup
  * Completing the wizard
  * Add some test transactions
  * GPG encryption
  * Generation of charts and reports
  * Rough check whether OFX integration lists supported financial
    institutions.
  * Small check of AqBanking implementation, whether accounts and users
    can be configured, but didn't test actual connectivity with a
    financial institution.
  * Check of Weboob integration with a test PayPal backend, however also
    just with a dummy account and without actually connecting to PayPal.

One of the upstream tests "reports-chart-test" seems to fail even though
generating charts and reports are working when testing manually. It also
seems that this is the case on other distributions, for example Gentoo
has disabled that test as well:

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5169cec68fa6fd67841

Note that I didn't add myself as a maintainer because I'm not personally
using KMyMoney but just packaged it for someone else. I hope this is
useful for other people, so that maybe someday[TM] there will be a
proper maintainer.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @ttuegel
2018-04-28 12:41:43 +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
Matthew Justin Bauer
31881e36b6
Merge pull request #39267 from Twey/atlassian-cli
atlassian-cli: init at 7.8.0
2018-04-28 00:12:18 -05:00
Matthew Justin Bauer
08364a929a
Merge pull request #39101 from jokogr/u/jetbrains-2018.1.1
Jetbrains products' update 2018.1.1
2018-04-28 00:03:04 -05:00
Ben Darwin
fa850e8fda conglomerate: init at 2017-09-10 2018-04-27 18:57:17 -04:00
Jörg Thalheim
f0826a0e21
Merge pull request #39626 from rvolosatovs/update/bspwm
bspwm: 0.9.4 -> 0.9.5
2018-04-27 23:16:50 +01:00
xeji
b5f21c25a8
Merge pull request #39385 from jensbin/typora_0.9.47
typora: 0.9.44 -> 0.9.47
2018-04-27 23:51:29 +02:00
Roman Volosatovs
1a244d9a35
bspwm: add rvolosatovs to maintainers 2018-04-27 22:54:46 +02:00
Roman Volosatovs
df85ddd229
bspwm: 0.9.4 -> 0.9.5 2018-04-27 22:54:46 +02:00
Matthew Justin Bauer
455e4c8d5b
Merge pull request #38906 from xvapx/upd/tribler
tribler: 7.0.1 -> 7.0.2
2018-04-27 15:03:53 -05:00
Matthew Justin Bauer
914cc793e1
Merge pull request #39119 from veprbl/pr/sherpa_2.2.5
sherpa: 2.2.4 -> 2.2.5
2018-04-27 15:01:45 -05:00
xeji
4c19cae59a
Merge pull request #39544 from r-ryantm/auto-update/kid3
kid3: 3.6.0 -> 3.6.1
2018-04-27 21:23:34 +02:00
Michael Raskin
547a41a045
Merge pull request #39512 from Anton-Latukha/handbrake-upd
handbrake: 1.0.7 -> 1.1.0, according changes
2018-04-27 19:03:42 +00:00
Jörg Thalheim
d51d9c1d53
Merge pull request #39620 from jensbin/terraform_ibmcloud
terraform-provider-ibm: init at 0.8.0
2018-04-27 19:41:49 +01:00
Jens Binkert
53722f25ad terraform-provider-ibm: init at 0.8.0 2018-04-27 20:20:21 +02:00
Jörg Thalheim
d89128bb4b
Merge pull request #39600 from Synthetica9/atom-1-26-1
atom: 1.26.0 -> 1.26.1
2018-04-27 16:46:39 +01:00
Alexander Krupenkin
82f24d65a3
parity: 1.9.6 -> 1.9.7 2018-04-27 15:11:52 +03:00
Alexander Krupenkin
9939fb2cb6
parity-beta: 1.10.1 -> 1.10.2 2018-04-27 15:11:31 +03:00
zimbatm
ad7bc980d2 terraform: update all plugins 2018-04-27 12:54:40 +01:00
Jörg Thalheim
58e2f87003
Merge pull request #39592 from Mic92/masterpdfeditor
masterpdfeditor: use autoPatchelfHook
2018-04-27 12:40:59 +01:00
Patrick Hilhorst
fc7ae1fefe atom: 1.26.0 -> 1.26.1 2018-04-27 13:40:20 +02:00
Jörg Thalheim
f5bee7ed02
Merge pull request #39594 from Mic92/aangifte
aangifte: remove ancient versions
2018-04-27 10:37:19 +01:00
Jörg Thalheim
cbc6560122
Merge pull request #39553 from r-ryantm/auto-update/darktable
darktable: 2.4.2 -> 2.4.3
2018-04-27 09:00:00 +01:00
Jörg Thalheim
f2a15f747a aangifte: remove ancient versions
Packages were either absent or the hashes were broken,
so I highly doubt somebody is using 4+ years old tax programs.
2018-04-27 08:54:58 +01:00
Jörg Thalheim
e5e5dc3377 aangifte: remove ancient versions
Packages were either absent or the hashes were broken,
so I highly doubt somebody is using 4+ years old tax programs.
2018-04-27 08:51:43 +01:00
Jörg Thalheim
ee9d0a85d9 masterpdfeditor: use autoPatchelfHook 2018-04-27 08:31:51 +01:00
Jörg Thalheim
fd29514404
Merge pull request #39579 from xeji/teamviewer
teamviewer: 12.0.90041 -> 13.1.3026
2018-04-27 08:21:54 +01:00
Jörg Thalheim
cd12c33848
Merge pull request #39569 from woffs/shotcut-18.03
shotcut: 17.11 -> 18.03.06
2018-04-27 08:13:12 +01:00
Roger Qiu
ff3b88713c labelImg: init at 1.6.0 2018-04-27 12:01:24 +10:00
Matthew Justin Bauer
047c9372ab
inkscape: fix on darwin again
I have no idea why but this broke Darwin. So added a conditional for the shebang patching.

https://hydra.nixos.org/build/73283875
2018-04-26 20:47:16 -05:00
xeji
9badee01c1 teamviewer 12.0.90041 -> 13.1.3026
bump, move to qt5, drop i686 support
2018-04-27 00:45:32 +02:00
Dmitry Kalinkin
2f47c93ec8
sacrifice: set LD_LIBRARY_PATH for pythia plugins to work 2018-04-26 18:19:14 -04:00
Anton-Latukha
f3ff2b1fa6 handbrake: 1.0.7 -> 1.1.0 & according changes 2018-04-27 00:37:40 +03:00
Sarah Brofeldt
2248f98dea
Merge pull request #39570 from srhb/chromium-24h-timeout
chromium: See if Hydra obeys a 24h meta.timeout
2018-04-26 22:12:16 +02:00
Sarah Brofeldt
537d14f4e2 chromium: See if Hydra obeys a 24h meta.timeout 2018-04-26 21:59:33 +02:00
Frank Doepper
c12caf34d2 shotcut: add myself as maintainer 2018-04-26 21:42:22 +02:00
Frank Doepper
489b0a5f47 shotcut: 17.11 -> 18.03.06 2018-04-26 21:41:30 +02:00
xeji
00610fe090 qemu-riscv: remove, obsolete with qemu 2.12
upstream qemu 2.12 includes riscv support
2018-04-26 18:15:21 +02:00
Will Dietz
3d4aa7e95d qemu: workaround 'struct sysinfo' conflict musl <--> linux
Most everyone using musl patches the linux headers instead,
but various software uses a local workaround like the
one added in this commit (psutils, for example).

It's not obvious to me which project has the "bug",
and I'm reluctant to even propose modifying our headers
without clear answer on the issue.

Also, modifying those headers triggers rebuild-all-the-things.

Hopefully upstream projects sort this out, in the meantime
adding this define is a bit of a kludge but does the job.

-------

For the curious, the patch usually is something like this:
https://patchwork.kernel.org/patch/3833241/

Here's an updated version that also ensures
kernel users get the sysinfo struct as expected too:
https://raw.githubusercontent.com/openwrt/openwrt/e3c43ade0bae9491aeea50fa361e846bb5002dc0/target/linux/generic/pending-4.14/270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch

(cherry picked from commit dtzWill/nixpkgs@91b5f5a463)
2018-04-26 17:58:16 +02:00
Matthew Justin Bauer
38364c0b07
inkscape: don't patch share/filters
This should not be needed because they are using `#!/usr/bin/env python` as the shebang and in fact it will break inkscape.x86_64-darwin.

https://hydra.nixos.org/build/73283875/
2018-04-26 10:36:57 -05:00
Robert Schütz
42bf1d5db0
Merge pull request #39522 from r-ryantm/auto-update/smplayer
smplayer: 18.3.0 -> 18.4.0
2018-04-26 17:36:47 +02:00
R. RyanTM
5a62cfe4d3 darktable: 2.4.2 -> 2.4.3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/darktable/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/darktable-cltest help’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/darktable-cmstest -h’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/darktable-cmstest --help’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/darktable-cmstest help’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/.darktable-cmstest-wrapped -h’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/.darktable-cmstest-wrapped --help’ got 0 exit code
- ran ‘/nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3/bin/.darktable-cmstest-wrapped help’ got 0 exit code
- found 2.4.3 with grep in /nix/store/9c4h87rp848ik02prxawwi85qzidjkmz-darktable-2.4.3
- directory tree listing: https://gist.github.com/70f09e7ec3ef4b1bba88d54f066cf9df
2018-04-26 06:55:28 -07:00
R. RyanTM
8a3cdb993d containerd: 1.0.3 -> 1.1.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/containerd/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd -h’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd --help’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd help’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd-release -h’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd-release --help’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/containerd-release help’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/ctr -h’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/ctr --help’ got 0 exit code
- ran ‘/nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0/bin/ctr help’ got 0 exit code
- found 1.1.0 with grep in /nix/store/lmnlz9w8fhf71pxl7wlhv9vsv4k3bnxd-containerd-1.1.0
- directory tree listing: https://gist.github.com/7b4a990853acfbf946f8abe02582f41d
2018-04-26 06:18:41 -07:00
Tim Steinbach
e0ad325cd4
docker: 18.03.0 -> 18.03.1 2018-04-26 08:02:21 -04:00
R. RyanTM
29c66d9f09 kid3: 3.6.0 -> 3.6.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/kid3/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/frn5bzzva0ysc1vk9adf7lwmlqg28br9-kid3-3.6.1/bin/kid3-cli -h’ got 0 exit code
- ran ‘/nix/store/frn5bzzva0ysc1vk9adf7lwmlqg28br9-kid3-3.6.1/bin/kid3-cli --help’ got 0 exit code
- ran ‘/nix/store/frn5bzzva0ysc1vk9adf7lwmlqg28br9-kid3-3.6.1/bin/kid3-cli help’ got 0 exit code
- found 3.6.1 with grep in /nix/store/frn5bzzva0ysc1vk9adf7lwmlqg28br9-kid3-3.6.1
- directory tree listing: https://gist.github.com/b9be08ae08dde4714bfceaebaf277eab
2018-04-26 04:30:01 -07:00
Jörg Thalheim
838db3b85d
Merge pull request #39529 from r-ryantm/auto-update/ott
ott: 0.27 -> 0.28
2018-04-26 09:14:36 +01:00
Jörg Thalheim
a21334effe
Merge pull request #39518 from r-ryantm/auto-update/xmrig
xmrig: 2.5.2 -> 2.5.3
2018-04-26 08:55:16 +01:00
R. RyanTM
769093b867 ott: 0.27 -> 0.28
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/ott/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/2lbl8zpp2lrrh9pgh2gnyhimq6i86rl1-ott-0.28/bin/ott --help’ got 0 exit code
- ran ‘/nix/store/2lbl8zpp2lrrh9pgh2gnyhimq6i86rl1-ott-0.28/bin/ott.opt --help’ got 0 exit code
- found 0.28 with grep in /nix/store/2lbl8zpp2lrrh9pgh2gnyhimq6i86rl1-ott-0.28
- directory tree listing: https://gist.github.com/177f63b8c23bae6301ced29fb0e617c4
2018-04-26 00:52:29 -07:00
adisbladis
d479f3aa8e
Merge pull request #39521 from r-ryantm/auto-update/tini
tini: 0.17.0 -> 0.18.0
2018-04-26 15:29:54 +08:00
R. RyanTM
28440ed276 smplayer: 18.3.0 -> 18.4.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/smplayer/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/5vy4663v65r0ks1d1jcy0p24m2lk0zmh-smplayer-18.4.0/bin/smplayer -h’ got 0 exit code
- ran ‘/nix/store/5vy4663v65r0ks1d1jcy0p24m2lk0zmh-smplayer-18.4.0/bin/smplayer --help’ got 0 exit code
- found 18.4.0 with grep in /nix/store/5vy4663v65r0ks1d1jcy0p24m2lk0zmh-smplayer-18.4.0
- directory tree listing: https://gist.github.com/25ca7c094ad35c4c5ed4c2c33dfb9be2
2018-04-25 22:04:55 -07:00
R. RyanTM
518eca8256 tini: 0.17.0 -> 0.18.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/tini/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini -h’ got 0 exit code
- ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini --version’ and found version 0.18.0
- found 0.18.0 with grep in /nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0
- directory tree listing: https://gist.github.com/c992fd0a24dfc0365d6b62ac567d395c
2018-04-25 21:45:09 -07:00
R. RyanTM
7e1db6b41d xmrig: 2.5.2 -> 2.5.3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/xmrig/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.5.3 with grep in /nix/store/csidwxna34qv298smf6sflwaj93xr9p0-xmrig-2.5.3
- directory tree listing: https://gist.github.com/5aaeee0849eb7acb740cae01310a19f9
2018-04-25 20:36:43 -07:00
xeji
3e3b39f173 qemu: 2.11.1 -> 2.12.0 2018-04-26 01:41:53 +02:00
Robin Gloster
04ab1ed623
gitlab: 10.5.6 -> 10.7.0 2018-04-26 00:15:24 +02:00
Robin Gloster
775bbc2d57
gitlab-workhorse: 3.6.0 -> 4.1.0 2018-04-26 00:15:24 +02:00
Robin Gloster
ddec4ae7a0
gitlab-shell: 6.0.3 -> 7.1.2 2018-04-26 00:15:24 +02:00
Robin Gloster
59ad9933ff
gitaly: 0.81.0 -> 0.95.0 2018-04-26 00:15:23 +02:00
Michiel Derhaeg
189a4f3656 verifast: 14.5 -> 18.02 (#39480) 2018-04-25 22:54:57 +01:00
Jörg Thalheim
e15b2ed917
Merge pull request #39494 from magnetophon/guitarix
guitarix: 0.36.1 -> 0.37.0
2018-04-25 22:39:34 +01:00
Jörg Thalheim
a631da0376
Merge pull request #39489 from jlesquembre/kitty
kitty: 0.8.2 -> 0.9.0
2018-04-25 22:32:23 +01:00
Jörg Thalheim
18da50d8d3
Merge pull request #39503 from veprbl/pr/sacrifice_darwin_fix
sacrifice: fix runtime on darwin
2018-04-25 22:22:19 +01:00
Jörg Thalheim
a21607c47d
Merge pull request #39485 from sorki/ipmicfg_patchelf
ipmicfg: fix patchelf args
2018-04-25 22:21:37 +01:00
Katona László
329d1ba69a jmol: made it runnable 2018-04-25 22:42:07 +02:00
Katona László
75d8c81868 pymol: 1.8.4 -> 2.1.0 2018-04-25 22:15:51 +02:00
Matthew Justin Bauer
fb836946de
Merge pull request #35187 from xurei/app/yarssr
yarssr: init at git-2017-12-01
2018-04-25 14:47:08 -05:00
John Ericson
ba52ae5048 treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.

The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:

```
ISA:             ARMv8   {-A, -R, -M}
                 /    \
Mode:     Aarch32     Aarch64
             |         /   \
Encoding:   A64      A32   T32
```

At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.

The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.

[1]: https://developer.arm.com/products/architecture/a-profile
2018-04-25 15:28:55 -04:00
Dmitry Kalinkin
c1f45f76ad
sacrifice: fix runtime on darwin 2018-04-25 14:58:23 -04:00
Jan Tojnar
0009ae3d5e
onboard: fix missing typelibs 2018-04-25 19:55:39 +02:00
Bart Brouns
00528006cf guitarix: 0.36.1 -> 0.37.0 2018-04-25 19:24:41 +02:00
José Luis Lafuente
ac0fd5a909
kitty: 0.8.2 -> 0.9.0 2018-04-25 18:03:48 +02:00
aszlig
6c748ae749
inkscape: Fix build on NixOS
The first problem that was introduced in a276d5160c
was a linking error:

ld: cannot find -licui18n
ld: cannot find -licuuc
ld: cannot find -licudata

So I added icu to the buildInputs.

The second problem was that the interpreter wasn't patched in
share/filters, apparently this is only needed when building with
autotools:

make[3]: Entering directory '/build/inkscape-0.92.3/share/filters'
./i18n.py ./filters.svg > ./filters.svg.h
./i18n.py: /usr/bin/env: bad interpreter: No such file or directory

A similar error also occurs for share/palettes, share/patterns,
share/symbols and share/templates, so I added patching the interpreter
there as well.

Switching to autotools in Inkscape is a very bad idea, because upstream
currently still has their own autotools files in the 0.92.x tree but
master already has them removed, see this commit:

e471a664f9

However for the sake of trying to not break Inkscape on Darwin again,
I tried to keep the fixes minimal and not went back to CMake.

I did however mark the stuff that's unneeded for CMake, so that we can
avoid forgetting to remove that crap once we get back to CMake.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @matthewbauer
2018-04-25 17:09:04 +02:00
Richard Marko
ec371a5d98 ipmicfg: fix patchelf args 2018-04-25 16:08:05 +02:00
Will Dietz
2236f418f5 radiotray-ng: disable tests, they now want to download unconditionally 2018-04-25 08:38:36 -05:00
Will Dietz
4f16b36fed radiotray-ng: 0.2.1 -> 0.2.2
https://github.com/ebruck/radiotray-ng/releases/tag/v0.2.2
2018-04-25 08:32:49 -05:00
Jan Tojnar
4340a1582f
pitivi: 0.96 → 0.99 2018-04-25 15:14:17 +02:00
Lancelot SIX
8d58b1a0a0
Merge pull request #39360 from lsix/update_motu
motuclient: 1.4.00 -> 1.5.00
2018-04-25 11:46:19 +02:00
Ioannis Koutras
2479b449b6 webstorm: 2018.1 -> 2018.1.2 2018-04-25 11:33:03 +03:00
Ioannis Koutras
ef038375f8 ruby-mine: 2017.3.3 -> 2017.3.4 2018-04-25 11:33:02 +03:00
Ioannis Koutras
609766bf80 pycharm-professional: 2018.1 -> 2018.1.1 2018-04-25 11:33:02 +03:00
Ioannis Koutras
12f07ac1bc pycharm-community: 2018.1 -> 2018.1.1 2018-04-25 11:33:02 +03:00
Ioannis Koutras
21feb8a2ed idea-ultimate: 2018.1 -> 2018.1.2 2018-04-25 11:32:49 +03:00
Ioannis Koutras
e74d28ef96 idea-community: 2018.1 -> 2018.1.2 2018-04-25 11:32:40 +03:00
Ioannis Koutras
a52b5be4a2 goland: 2018.1 -> 2018.1.1 2018-04-25 11:29:53 +03:00
Ioannis Koutras
8ffaeecfca clion: 2018.1 -> 2018.1.1 2018-04-25 11:29:53 +03:00
Jörg Thalheim
ab5e6073d9
Merge pull request #39436 from LnL7/vim-ft-nix
vim_configurable: replace default ftNix patch with sources from vim-nix
2018-04-25 08:36:36 +01:00
Matthew Justin Bauer
42c87d4716
Merge pull request #39439 from Ma27/fix-free-clementine-plugin-path
clementine: each output should hav a wrapped `GST_PLUGIN_SYSTEM_PATH_1_0`
2018-04-25 00:41:55 -05:00
Matthew Justin Bauer
d71d7c913e
Merge pull request #39465 from matthewbauer/work
Various work on broken packages
2018-04-25 00:30:32 -05:00
Matthew Bauer
0a8c91a931 inkscape: typo 2018-04-25 00:17:21 -05:00
Matthew Bauer
a276d5160c inkscape: fix on Darwin
Fixes #39175
2018-04-24 22:54:33 -05:00
adisbladis
b20a82cd75
calligra: 3.0.1 -> 3.1.0 2018-04-25 09:40:26 +08:00
adisbladis
1bde5c5930
kexi: 3.0.2 -> 3.1.0 2018-04-25 09:40:25 +08:00
adisbladis
337e9723ce
kde-applications: Create alias to okteta 2018-04-25 09:35:50 +08:00
Bastian Köcher
58f53dc4d4
okteta: Move into own package
Okteta was removed from kde applications and will now be released
independently. So, we currently use the released version from 17.12.3.
2018-04-25 09:35:49 +08:00
Bastian Köcher
faed183206
kde_applications: 17.12.3 -> 18.04.0 2018-04-25 09:35:49 +08:00
Bastian Köcher
b933157f44
kholidays: Move from kde_applications to kde_frameworks 2018-04-25 09:35:48 +08:00
Will Dietz
de40a77de8
Merge pull request #39453 from bgamari/fix-git
git: Set PERL_PATH when building manual
2018-04-24 18:55:26 -05:00
Jörg Thalheim
49ff3665a5 alacritty: 2018-03-04 -> 2018-04-1 2018-04-25 00:54:04 +01:00
Michael Raskin
cdca27101d
Merge pull request #39450 from r-ryantm/auto-update/baresip
baresip: 0.5.8 -> 0.5.9
2018-04-24 23:10:30 +00:00
Ben Gamari
b26ae506a9 git: Set PERL_PATH when building manual
Otherwise the build fails with the perplexing error

    make: *** No rule to make target 'cmd-list.made', needed by 'doc.dep'.  Stop.
    make: Leaving directory '/tmp/nix-build-git-2.16.3.drv-0/git-2.16.3/Documentation'

on NixOS (but not on Debian, where it succeeds, presumably since it picks up the
system perl).
2018-04-24 19:00:34 -04:00
Jörg Thalheim
cf68bb33cb dino: fix checksum 2018-04-24 23:44:32 +01:00
Jörg Thalheim
296bc1e569 dino: 2018-03-10 -> 2018-04-19 2018-04-24 23:41:21 +01:00
R. RyanTM
85161629c5 baresip: 0.5.8 -> 0.5.9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/baresip/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.5.9 with grep in /nix/store/qh69vw5jdwnw82vb6gkwz4f0k8gpjjry-baresip-0.5.9
- directory tree listing: https://gist.github.com/f67689bcf18570ad0408e54fa06db37c
2018-04-24 15:33:02 -07:00
Maximilian Bosch
a4ba8c6544
clementine: each output should hav a wrapped GST_PLUGIN_SYSTEM_PATH_1_0
see ef5e212d20 (r28723596)

/cc @jtojnar
2018-04-24 23:27:45 +02:00
Robert Helgesson
f54a9994e3
eclipse-plugin-spotbugs: 3.1.2 -> 3.1.3
Also switch to using zipped update site provided on GitHub.
2018-04-24 22:58:15 +02:00
Daiderd Jordan
1c3d38c69b
vim_configurable: replace default ftNix patch with sources from vim-nix 2018-04-24 22:56:25 +02:00
Jan Tojnar
bfd213aa2d
rhythmbox: fix build with GStreamer 1.14 2018-04-24 22:42:00 +02:00
John Ericson
4aefe8a48a
Merge pull request #39425 from bgamari/git-cross
Allow git to be cross-compiled
2018-04-24 16:07:05 -04:00
Jan Tojnar
5979e88695
orca: fix typelib lookup 2018-04-24 21:53:12 +02:00
Jan Tojnar
d48e9ff92a
liblouis: mark as broken 2018-04-24 21:53:11 +02:00
Jörg Thalheim
78d9bffc0a
Merge pull request #39412 from r-ryantm/auto-update/pcmanfm
pcmanfm: 1.2.5 -> 1.3.0
2018-04-24 20:05:58 +01:00
Frank Doepper
81c1b9c9fc googleearth: remove
it's broken, and even after adjusting the derivation to the currently
available downloads it does not run well for me and it is rather
annoying to adjust the derivation to the moving
google-earth-stable_current source download link
2018-04-24 21:05:03 +02:00
R. RyanTM
768f1d968c latte-dock: 0.7.4 -> 0.7.5 (#39418)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/latte-dock/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/6nvkkskm7j4ngqfy722ajp289gqhg1a9-latte-dock-0.7.5/bin/latte-dock -h’ got 0 exit code
- ran ‘/nix/store/6nvkkskm7j4ngqfy722ajp289gqhg1a9-latte-dock-0.7.5/bin/latte-dock --help’ got 0 exit code
- found 0.7.5 with grep in /nix/store/6nvkkskm7j4ngqfy722ajp289gqhg1a9-latte-dock-0.7.5
- directory tree listing: https://gist.github.com/8f58b4f85d4c80752b6d66e912ce92c0
2018-04-24 14:59:32 -04:00
Ben Gamari
d111a42772 git: Enable cross-compilation 2018-04-24 14:58:58 -04:00
Ben Gamari
2d397f1b76 git: Allow perl support to be disabled 2018-04-24 14:58:58 -04:00
Ben Gamari
432df5b1cf git: Fix USE_LIBPCRE2 configuration
Previously this was injected during install, causing the build system to rebuild
the entire package.
2018-04-24 14:58:58 -04:00
Ben Gamari
ae0a14d25d git: Refactor makeFlags using lib.optionals 2018-04-24 14:58:58 -04:00
Will Dietz
866940303c mendeley: 1.17.13 -> 1.18, touchup update script
(support "1.18" instead of "1.18.0")
2018-04-24 12:29:58 -05:00
R. RyanTM
3c546c2da9 pcmanfm: 1.2.5 -> 1.3.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/pcmanfm/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/z37gyw9vskaby2caizkzghjd7ikafv64-pcmanfm-1.3.0/bin/pcmanfm -h’ got 0 exit code
- ran ‘/nix/store/z37gyw9vskaby2caizkzghjd7ikafv64-pcmanfm-1.3.0/bin/pcmanfm --help’ got 0 exit code
- ran ‘/nix/store/z37gyw9vskaby2caizkzghjd7ikafv64-pcmanfm-1.3.0/bin/.pcmanfm-wrapped -h’ got 0 exit code
- ran ‘/nix/store/z37gyw9vskaby2caizkzghjd7ikafv64-pcmanfm-1.3.0/bin/.pcmanfm-wrapped --help’ got 0 exit code
- found 1.3.0 with grep in /nix/store/z37gyw9vskaby2caizkzghjd7ikafv64-pcmanfm-1.3.0
- directory tree listing: https://gist.github.com/f15deaa66af5124a632abbca797f7240
2018-04-24 10:20:14 -07:00
lewo
18c6c495ea
Merge pull request #39171 from nocent/add/bonzomatic
bonzomatic: init at 2018-03-29
2018-04-24 17:58:55 +02:00
Michael Raskin
1f909a8dfc
Merge pull request #39403 from timokau/maxima-exl-testfailures-2
maxima-ecl: Disable more failing tests
2018-04-24 15:44:04 +00:00
nocent
0ada4b37d7
Added version info, set compatible platforms
Thanks for the review @nlewo and @Infinisil
2018-04-24 15:32:47 +00:00
Franz Pletz
0520634725
xmr-stak: doesn't build with gcc7 if cuda is enabled 2018-04-24 17:06:57 +02:00
Matthew Justin Bauer
d57e6466e0
Merge pull request #39377 from timokau/pari-pthread
pari: Make pthread optional, remove unstable
2018-04-24 10:03:01 -05:00
lewo
e0956295a9
Merge pull request #39363 from carlosdagos/go-jira-1.0.17
go-jira: init at 1.0.17
2018-04-24 16:13:25 +02:00
Jörg Thalheim
04a15a6ebf
Merge pull request #39338 from alexfmpe/coursera-dl
coursera-dl: init at 0.10.0
2018-04-24 14:45:58 +01:00
Carlos D'Agostino
49f02db58c go-jira: init at 1.0.17 2018-04-24 23:40:37 +10:00
Jörg Thalheim
b959c6ed60
Merge pull request #38806 from magnetophon/dragonfly-reverb
dragonfly-reverb: init at 0.9.1
2018-04-24 14:04:35 +01:00
Alexandre Esteves
c9b3a2452f
coursera-dl: init at 0.10.0 2018-04-24 13:34:49 +01:00
Timo Kaufmann
396b5d9c65 maxima-ecl: Disable more failing tests 2018-04-24 13:38:44 +02:00
Jan Tojnar
39a64b28b5
orca: 3.28.0 → 3.28.1 2018-04-24 13:30:56 +02:00
Pascal Wittmann
97fb4c32f1
Merge pull request #39399 from vaibhavsagar/init-teseq
teseq: init at 1.1.1
2018-04-24 13:12:22 +02:00
Bart Brouns
5f6373d582 dragonfly-reverb: init at 0.9.1 2018-04-24 12:56:50 +02:00
Timo Kaufmann
75b0866d0c pari: Make pthread optional, remove unstable 2018-04-24 12:54:59 +02:00
Michael Raskin
bc6f7a9ccf
Merge pull request #39370 from timokau/singular-ntl
singular: Fix ntl dependency
2018-04-24 10:54:23 +00:00
Timo Kaufmann
ba389086de singular: Fix ntl dependency 2018-04-24 12:04:28 +02:00
Vaibhav Sagar
847196143d teseq: init at 1.1.1 2018-04-24 17:26:28 +08:00
Timo Kaufmann
b707c91814 maxima-ecl: Disable failing tests 2018-04-24 11:16:55 +02:00
Peter Simons
6799fcb42b R: 3.4.4 -> 3.5.0
Unfortunately, the new version fails its test suite AGAIN when the recommended
packages are not build. Makes one wonder whether maybe we should offer the R
developers CI builds that check this. I've reported the issue upstream, let's
see what happens.
2018-04-24 09:19:13 +02:00
Peter Hoeg
3fcb890fc7
Merge pull request #39376 from r-ryantm/auto-update/qlcplus
qlcplus: 4.11.1 -> 4.11.2
2018-04-24 06:46:17 +00:00
Daiderd Jordan
bca24c02ac
qemu: fix darwin build 2018-04-24 00:19:34 +02:00
Jens Binkert
e304b6b216 typora: 0.9.44 -> 0.9.47 2018-04-23 22:02:24 +02:00
Florian Klink
0e5f82b847 pdf-quench: init at 1.0.5 2018-04-23 21:28:47 +02:00
Kamil Chmielewski
3cdb8f581d spark: provided-hadoop -> nixpkgs hadoop
spark should use nixpkgs provided hadoop to make it consistent
for bigger Nix hadoop + spark setup
2018-04-23 20:48:33 +02:00
Michael Weiss
42a9ba28d1 androidStudioPackages.{dev,canary}: 3.2.0.10 -> 3.2.0.11 2018-04-23 20:24:51 +02:00
Michael Weiss
84ace02e87 android-studio: 3.1.1.0 -> 3.1.2.0 2018-04-23 20:24:51 +02:00
R. RyanTM
dc61a487c9 qlcplus: 4.11.1 -> 4.11.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/qlcplus/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 4.11.2 with grep in /nix/store/4qhjfvk9i1hi3q4jqzic5ajndnqschfi-qlcplus-4.11.2
- directory tree listing: https://gist.github.com/2877914d9c008fd955d2946bfd21926e
2018-04-23 10:22:07 -07:00
Matthew Justin Bauer
a02d6c99af
Merge pull request #34014 from mnacamura/mathematica-l10n
mathematica: enable installation of localized editions
2018-04-23 11:58:34 -05:00
Matthew Justin Bauer
3678dca0e3
Merge pull request #36979 from clearyf/cdparanoia
cdparanoia: Fix private keyword in header
2018-04-23 11:46:00 -05:00
Jörg Thalheim
d0b24f28fa
Merge pull request #39372 from r-ryantm/auto-update/urh
urh: 2.0.1 -> 2.0.2
2018-04-23 16:28:23 +01:00
Jörg Thalheim
67920d3d4c
Merge pull request #39371 from r-ryantm/auto-update/todo.txt-cli
todo-txt-cli: 2.10 -> 2.11.0
2018-04-23 16:18:13 +01:00
R. RyanTM
5960919876 urh: 2.0.1 -> 2.0.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/urh/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/cs9vqxk0xqcpqcs10bbqhq6h7vdbmyny-urh-2.0.2/bin/.urh-wrapped --version’ and found version 2.0.2
- ran ‘/nix/store/cs9vqxk0xqcpqcs10bbqhq6h7vdbmyny-urh-2.0.2/bin/urh --version’ and found version 2.0.2
- found 2.0.2 with grep in /nix/store/cs9vqxk0xqcpqcs10bbqhq6h7vdbmyny-urh-2.0.2
- directory tree listing: https://gist.github.com/fd267c85c4f90f14b9af167c50b169a0
2018-04-23 07:53:00 -07:00
R. RyanTM
ccffc7a5dd todo-txt-cli: 2.10 -> 2.11.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/todo.txt-cli/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.11.0 with grep in /nix/store/ws0k0b3kcl4j2aainnn8xg1vnx803s9c-todo.txt-cli-2.11.0
- directory tree listing: https://gist.github.com/37dad7ad49e196a469453b0b6a4ddb16
2018-04-23 07:48:22 -07:00
Wout Mertens
7c3dc2f53f
Merge pull request #39117 from Anton-Latukha/handbrake-rw
handbrake: refactor (fx, clenup, description, cosmetics, add maintainer)
2018-04-23 15:47:23 +02:00
Jörg Thalheim
e2b5e17791
Merge pull request #39301 from markus1189/libgphoto2
(lib)gphoto2: 2.5.1{5,6} -> 2.5.17
2018-04-23 11:54:57 +01:00
Lancelot SIX
9b5793790e
motuclient: 1.4.00 -> 1.5.00 2018-04-23 10:50:45 +02:00
Jörg Thalheim
d52e5da785
Merge pull request #39310 from Mic92/bitcoin-fixes
bitcoin-{unlimited,xt}: fix darwin
2018-04-23 08:36:59 +01:00
xeji
a586011b58 firefox-wrapper: fix icon linking (#39315)
don't try to link non-existing icons
2018-04-23 08:33:09 +01:00
Jörg Thalheim
c7d278ad07
Merge pull request #39351 from matthewbauer/calc-on-darwin
calc: cleanup expression
2018-04-23 08:07:13 +01:00
Matthew Bauer
63507ada7d calc: cleanup expression
Fixes #39321

(Still needs testing on Linux)
2018-04-22 19:01:25 -05:00
Corbin Simpson
69f23d9e73 enhanced-ctorrent: fix CVE-2009-1759 (#39311)
Patches from Debian.
2018-04-22 22:42:20 +01:00
Joachim F
36d58a2cd2
Merge pull request #39332 from markuskowa/octopus-up
octopus: 7.2 -> 7.3
2018-04-22 17:47:26 +00:00
Markus Kowalewski
1d0267b2e7
octopus: 7.2 -> 7.3 2018-04-22 08:43:19 -07:00
Jörg Thalheim
e3b0d05c9d
Merge pull request #39145 from geistesk/slstatus-unstable-2018-04-16
slstatus: unstable-2018-03-21 -> unstable-2018-04-16
2018-04-22 16:06:07 +01:00
Jörg Thalheim
15fee89bc7
Merge pull request #39143 from geistesk/et-0.1.1
et: 0.1 -> 0.1.1
2018-04-22 15:44:14 +01:00
Jörg Thalheim
69ee53a899
Merge pull request #39144 from geistesk/farbfeld-sent-path
farbfeld, sent: wrap PATH for 2ff and sent
2018-04-22 15:42:20 +01:00
Jörg Thalheim
46425a65ac bitcoin-{unlimited,xt}: fix darwin 2018-04-22 10:54:55 +01:00
Marti Serra
e9baa47a3b tribler: 7.0.1 -> 7.0.2 2018-04-22 10:42:10 +02:00
Matthew Justin Bauer
b4baad53e7
Merge pull request #39097 from smashedtoatoms/bitwigstudio2-to-2.3.2
bitwigstudio2: 2.3.1 -> 2.3.2
2018-04-21 20:56:53 -05:00
Matthew Justin Bauer
c8e58113b2
Merge pull request #38801 from worldofpeace/wire-desktop
wire-desktop: init at 3.0.2816
2018-04-21 20:47:56 -05:00
Timo Kaufmann
b93e1fbbfb jmol: init at 14.29.12 2018-04-21 20:41:21 -05:00
Timo Kaufmann
be0b8f2cf6 palp: init at 2.1 2018-04-21 20:40:59 -05:00
Timo Kaufmann
7dc6b2e3c3 pynac: init at 0.7.19 2018-04-21 20:40:22 -05:00
Daiderd Jordan
313b5fce7b
Merge pull request #39260 from chreekat/idiomatic-vim-ft-plugin
vim: idiomatic nix filetype plugin
2018-04-22 00:25:40 +02:00
Jörg Thalheim
d6ab16561d
Merge pull request #38664 from bcdarwin/minc_ecosystem
MINC ecosystem
2018-04-21 20:30:37 +01:00