Commit Graph

36621 Commits

Author SHA1 Message Date
Matthew Bauer
c2148482c2 libressl: move netcat stuff to '.nc' output
I still feel weird about doing this because it seems a little hacky
but this was requested by @Mic92 and seems understandable to not want
to mix up libressl outputs with netcat stuff.
2018-04-29 14:47:12 -05:00
Matthew Justin Bauer
d7e5637791
Merge pull request #39636 from matthewbauer/netbsd
netbsd: cleanups
2018-04-29 14:28:04 -05:00
Matan Shenhav
80bf73b11c pythonPackages.hdbscan: init at 0.8.12 (#37762) 2018-04-29 20:22:12 +02:00
xeji
8b6fe6680f
Merge pull request #39513 from xeji/qemu-2-12
qemu: 2.11.1 -> 2.12.0
2018-04-29 18:41:18 +02:00
viric
613e1485ad
Merge pull request #39672 from pstn/gnunet-git
gnunet: Add gnunet_git.
2018-04-29 16:41:41 +02:00
Jan Tojnar
0e1147d137
Merge pull request #37915 from jtojnar/gimp-2.10
GIMP 2.10
2018-04-29 15:12:27 +02:00
Philipp Steinpaß
49003e880c gnunet: Add gnunet_git. 2018-04-29 13:26:40 +02:00
Jan Tojnar
b0d3ed3484
gimp: 2.8.22 → 2.10.0 2018-04-29 08:39:05 +02:00
Robert Schütz
cbc3afc655
Merge pull request #39662 from ilya-kolpakov/pymc3
pythonPackages.pymc3: init at 3.2
2018-04-29 08:12:10 +02:00
Peter Hoeg
88454d73b0 qtox: 1.13.1 -> 1.15.0 2018-04-29 07:52:54 +08:00
Peter Hoeg
15268306fe libtoxcore: introduce 0.2.2 in addition to 0.1.11 2018-04-29 07:52:54 +08:00
Ilya Kolpakov
f2adf2059a pythonPackages.pymc3: init at 3.2 2018-04-28 22:57:57 +02:00
Ilya Kolpakov
4797fe8da4 pythonPackages.patsy: 0.3.0 -> 0.5.0 2018-04-28 22:57:56 +02:00
Tim Steinbach
1cf5aad65b
linux-copperhead: Fix all-packages reference 2018-04-28 16:32:15 -04:00
Tim Steinbach
844c08ec0a
linux-copperhead: Add 4.16.5.a
Separate LTS and stable kernel releases
2018-04-28 19:46:25 +00:00
Jörg Thalheim
3ccb77b8a2
Merge pull request #39511 from steveeJ/sj-add-kyocera-drivers
cups-kyodialog3: init at 8.1601
2018-04-28 19:54:06 +01:00
Aristid Breitkreuz
c7713e9775 mono: change default version to "latest" (5.8), because 4.0 does not evaluate due to security 2018-04-28 19:39:15 +02:00
Vincent Laporte
8994fff8bb
ocamlPackages.eliom: 6.2.0 -> 6.3.0 2018-04-28 14:31:50 +00:00
Vincent Laporte
eaf0592498
ocamlPackages.ocsigen_server: 2.8 -> 2.9 2018-04-28 14:31:45 +00:00
Jörg Thalheim
4071b64ae4
Merge pull request #38883 from romildo/new.onestepback
onestepback: init at 0.98
2018-04-28 13:01:25 +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
aszlig
d2b8d8bddc
alkimia: init at 7.0.1
This is used by KMyMoney and also the reason why I needed to add C++
support to MPIR in the parent commit.

The reason why I didn't add myself as a maintainer is because I'm not
personally using KMyMoney and thus Alkimia.

Signed-off-by: aszlig <aszlig@nix.build>
2018-04-28 12:41:42 +02:00
aszlig
2f893ff53d
autoPatchelfHook: Provide a better derivation name
Thanks to @Ericson2314 for the suggestion to provide a name for the hook
script. Comment was posted here:

https://github.com/NixOS/nixpkgs/pull/34506#discussion_r167421856

Very useful if you use some other hooks and autoPatchelfHook so you
don't just get a bunch of "hook" derivations.

Tested by quickly building (not running) teamviewer and masterpdfeditor.

Signed-off-by: aszlig <aszlig@nix.build>
Reported-by: John Ericson <Ericson2314@yahoo.com>
2018-04-28 07:25:30 +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
Jan Tojnar
3ebb162d90
gegl_0_4: init at 0.4.0 2018-04-28 04:08:49 +02:00
Matthew Bauer
6bc19398be openbsd: remove 2018-04-28 01:03:34 +00:00
Matthew Bauer
3c3b82234a netcat-openbsd: remove 2018-04-27 19:34:41 -05:00
Matthew Bauer
99b8d106e9 netcat-gnu: move to pkgs/tools/networking/netcat 2018-04-27 19:32:19 -05:00
xeji
ac716155b2
Merge pull request #39362 from flokli/abootimg
abootimg: init at 0.6
2018-04-28 02:09:37 +02:00
Jean-Baptiste Giraudeau
92808e667f blobfuse: init at 1.0.1-RC-Preview (#39073) 2018-04-27 23:58:40 +01:00
Ben Darwin
fa850e8fda conglomerate: init at 2017-09-10 2018-04-27 18:57:17 -04:00
Badi Abdul-Wahid
df3566c956 unifi, nixos/unifi: support LTS (5.6.36) and release (5.7.20)
Ubiquiti has both a LTS and current version of their Unifi controller software.

The latter adds new features, but may drop support for some devices.

This adds the capability to use either for the unifi module but defaults
to the LTS version, which was the previous behavior.
2018-04-28 00:27:33 +02:00
xeji
61b96ab9a2
Merge pull request #39168 from vodkabot/master
twilight: init at 2018-04-19
2018-04-27 23:36:03 +02:00
Yegor Timoshenko
6e33df0f6f
Merge pull request #39008 from serokell/youtrack
Youtrack package and service
2018-04-27 22:16:57 +03:00
xeji
82e9125272
Merge pull request #39593 from ChengCat/inziu-iosevka
inziu-iosevka: remove
close #39551
2018-04-27 20:54:47 +02:00
Jens Binkert
53722f25ad terraform-provider-ibm: init at 0.8.0 2018-04-27 20:20:21 +02:00
Yucheng Zhang
f135610aca inziu-iosevka: remove 2018-04-27 23:32:32 +08:00
Yorick van Pelt
6c0806bdf0
youtrack: init at 2018.1.41051 2018-04-27 17:09:53 +02: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
StillerHarpo
5f0e6404dc monetdb: init at 11.29.3 (#39306)
monetdb: init at 11.29.3
2018-04-27 09:43:07 +02: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
Roger Qiu
ff3b88713c labelImg: init at 1.6.0 2018-04-27 12:01:24 +10:00
Franz Pletz
b5655751a1
EmptyEpsilon: init at 2018.02.15 2018-04-27 01:42:47 +02: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
Mark Karpov
2a4dc39e1e pytaglib: init at 1.4.3 (#39498) 2018-04-26 17:19:52 +01: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
Stefan Matting
2821265dfd Swap incorrect TheanoWithoutCuda with TheanoWithCuda 2018-04-26 13:56:55 +03:00
Jörg Thalheim
903f694e34
Merge pull request #39477 from ChengCat/new-fonts
Add new fonts
2018-04-26 10:17:41 +01:00
John Wiegley
d97d463d19 perlPackages.ListMoreUtilsXS: Fix build on Darwin 2018-04-25 23:04:15 -07:00
Stefan Junker
c600f02e43 cups-kyodialog3: init at 8.1601 2018-04-26 00:24:37 +02:00
Katona László
3a8b8bcb69 all-packages.nix: made new block CHEMISTRY 2018-04-25 22:15:51 +02:00
John Ericson
b9acfb4ecf 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

(cherry picked from commit ba52ae5048)
2018-04-25 15:50:41 -04: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
Markus Kowalewski
e0d3371728
limesuite: init at 18.04.1 2018-04-25 12:31:47 -07:00
Markus Kowalewski
184cb1e8c6
soapysdr+plugins: init at 0.6.1 2018-04-25 12:31:43 -07: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
José Romildo Malaquias
524b29471b onestepback: init at 0.98 2018-04-25 16:03:09 -03:00
Vincent Laporte
5c4ee2a3ab ocaml: init at 4.07.0+beta2 2018-04-25 18:19:57 +02:00
Jan Tojnar
0dec4fa1db
rarian: merge gnome{2,3}.rarian 2018-04-25 15:53:26 +02:00
Yucheng Zhang
cbbcd2920d sarasa-gothic: init at 0.5.2 2018-04-25 21:48:21 +08:00
Yucheng Zhang
42ecb0dd94 inziu-iosevka: init at 1.13.2 2018-04-25 21:48:17 +08:00
Rodney Lorrimar
ca7d983999 buildkite-agent3: init at 3.0.1 (#39471)
New stable release. Version 2.6 is kept for backwards compatibility.

https://github.com/buildkite/agent/releases/tag/v3.0.0
https://github.com/buildkite/agent/releases/tag/v3.0.1
2018-04-25 13:47:26 +01:00
Frederik Rietdijk
304c3ebc6d
Merge pull request #39285 from florianjacob/synapse
matrix-synapse: 0.27.2 -> 0.27.4
2018-04-25 07:41:29 +02:00
Frederik Rietdijk
fbd169ae5f
Merge pull request #39158 from catern/dataclass
pythonPackages.dataclasses: init at 0.5
2018-04-25 07:39:29 +02: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
b933157f44
kholidays: Move from kde_applications to kde_frameworks 2018-04-25 09:35:48 +08:00
Jan Tojnar
ddc48afcca
python3.pkgs.pyatspi: 2.18.0 → 2.26.0 2018-04-24 21:53:11 +02:00
Matthew Justin Bauer
ab92a474a9
Merge pull request #38822 from matthewbauer/netbsd
Introducing NetBSD userland
2018-04-24 14:46:01 -05:00
Frank Doepper
82a9df76cc tuxpaint: init at 0.9.22 2018-04-24 21:25:13 +02:00
Matthew Bauer
31ef995e37 bsd: init netbsd & openbsd userland
Adds a couple of useful NetBSD and OpenBSD derivations. Some of these
will be integrated into Nixpkgs later.

Noncomprehensive list:

- netbsd.getent
- netbsd.getconf
- netbsd.fts
- openbsd.mg
- netbsd.compat (can replace libbsd)
2018-04-24 14:16:35 -05: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
Spencer Baugh
2dbde855eb pythonPackages.dataclasses: init at 0.5 2018-04-24 18:04:54 +00: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
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
Matthew Justin Bauer
7ebb6212a2
Merge pull request #38805 from timokau/zn_poly-init
zn_poly: init at 0.9
2018-04-24 09:28:27 -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
Marcin Falkiewicz
0fad5f7a84 wine: add Vulkan support 2018-04-24 14:47:12 +02:00
Alexandre Esteves
c9b3a2452f
coursera-dl: init at 0.10.0 2018-04-24 13:34:49 +01:00
Tim Steinbach
fc79bf4374
linux: Remove 4.15.x 2018-04-24 08:14:31 -04: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
Vaibhav Sagar
847196143d teseq: init at 1.1.1 2018-04-24 17:26:28 +08:00
Robert Schütz
f2ad8b295c
Merge pull request #38802 from timokau/rankdwidth-init
rankwidth: init at 0.7
2018-04-24 01:01:17 +02:00
Robert Schütz
1aaab715e4
Merge pull request #39195 from teto/vdirsyncer
[RDY] Vdirsyncer update
2018-04-24 00:52:41 +02:00
Robert Schütz
16408d3920
Merge pull request #38784 from timokau/flask-autoindex-init
pythonPackages.flask-autoindex: init at 0.6
2018-04-24 00:27:25 +02:00
Matthew Justin Bauer
cf758a5aa4
release: add inkscape, qt5.qtmultimedia (darwin)
We want to make sure these work in Darwin. Hopefully this will improve their stability.
2018-04-23 16:51:33 -05:00
Eric Wolf
94a420b921 fetchFromGitLab: Use API archive download endpoint.
According to

https://gitlab.com/gitlab-org/gitlab-ce/issues/45586#note_69828451

this URL is something with guaranteed stability.
2018-04-23 21:32:49 +02:00
Florian Klink
0e5f82b847 pdf-quench: init at 1.0.5 2018-04-23 21:28:47 +02:00
Peter Simons
21d688f9b8
Merge pull request #39309 from LumiGuide/haskell.overrides
RFC: haskell: allow overriding all package sets at once
2018-04-23 21:07:58 +02:00
Austin Seipp
617db2df96 foundationdb: init at 5.1.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-23 12:12:53 -05:00
Matthew Justin Bauer
bf6641ede5
Merge pull request #36460 from timokau/linbox-init
linbox: init at 1.5.2
2018-04-23 12:05:29 -05:00
Florian Klink
1b4027c6fc abootimg: init at 0.6 2018-04-23 14:09:41 +02:00
Timo Kaufmann
a8f9fc1c16 pythonPackages.flask-autoindex: init at 0.6 2018-04-23 13:26:43 +02:00
Matthias Beyer
f396f0937e pythonPackages.milksnake: init at 0.1.5 2018-04-23 16:35:44 +09:00
Vincent Laporte
5f82c322d6 eff: 20140928 -> 5.0 (#39264) 2018-04-23 08:16:03 +01:00
Benjamin Hipple
9e9cc471b6 dejavu-fonts: fix missing Perl IOString dependency (#39341)
Per the docs, IOString was recently added as a dependency:
https://github.com/dejavu-fonts/dejavu-fonts/blob/master/BUILDING.md

As-is, attempting to rebulid from source errors out with this missing perl module.
2018-04-22 23:24:44 +01:00
Matthew Justin Bauer
6a4cc3562c
Revert "initial TBS driver" 2018-04-22 15:57:51 -05:00
Timo Kaufmann
28c023e246 zn_poly: init at 0.9 2018-04-22 20:44:06 +02:00
Timo Kaufmann
0c9aaf0814 rankwidth: init at 0.7 2018-04-22 20:11:49 +02:00
Matthew Justin Bauer
fb7cdbc15d
Merge pull request #32049 from ck3d/tbs
initial TBS driver
2018-04-22 13:03:22 -05:00
Jörg Thalheim
c3e78d3988
Merge pull request #39123 from Infinisil/add/dust
dust: init at 0.2.3
2018-04-22 16:21:49 +01:00
Florian Jacob
2749531e0f frozendict: move to separate module 2018-04-22 15:25:33 +02:00
Florian Jacob
ce3961cc70 python-frozendict: 0.5 -> 1.2 2018-04-22 15:25:33 +02:00
Florian Jacob
63901546df canonicaljson: separating from pythonPackages 2018-04-22 15:25:33 +02:00
Bas van Dijk
bf6d796a27 haskell: allow overriding all package sets at once
Setting haskell.packageOverrides like so:

  haskell = super.haskell // {
    packageOverrides = self: super: {
      my-package = ...;
      my-other-package = ...;
    };
  };

causes all compiler-specific package sets to be overridden with those
overrides.
2018-04-22 10:34:44 +02:00
Christian Kögler
9cbf81e11b initial kernel modules for TBS devices 2018-04-22 08:50:25 +02: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
b74e884aab flintqs: init at 1.0 2018-04-21 20:43:56 -05:00
Timo Kaufmann
d0d7894f75 rubiks: init at 20070917 2018-04-21 20:42:58 -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
Timo Kaufmann
a037da9afe cypari2: init at 1.1.4 2018-04-21 20:39:56 -05:00
Timo Kaufmann
9897e959f3 pythonPackages.flask-silk: init at 0.2 2018-04-21 20:39:22 -05:00
Timo Kaufmann
1cf1b1e0f4 pythonPackages.flask-babel: init at 0.11.2 2018-04-21 20:39:03 -05:00
Timo Kaufmann
10124a4743 lcalc: init at 1.23 (#38796) 2018-04-21 20:38:40 -05:00
Matthew Justin Bauer
405daa25f1
Merge pull request #27257 from hectorj/init-zipkin-server-1.28.1
zipkin-server: init at 1.28.1
2018-04-21 15:22:43 -05:00
Matthew Justin Bauer
55a7e45529
Merge pull request #31724 from pngwjpgh/feat/nsd/dnssec
Automatic DNSSEC signatures & key schedule for nsd
2018-04-21 15:15:03 -05:00
Jörg Thalheim
d79df63ea2 cloudfoundry-cli: 6.32.0 -> 6.36.1 2018-04-21 20:58:25 +01:00
Matthew Justin Bauer
7a516cd0c3
Merge branch 'master' into feat/nsd/dnssec 2018-04-21 14:48:30 -05:00
Joachim F
17b73ff90c
Merge pull request #38658 from dasJ/dnsdist-pkg
dnsdist: init at 1.3.0
2018-04-21 19:47:27 +00:00
Peter Romfeld
f5b3f9962e cocoapods: init at 1.3.1 (#32583)
* cocoapods: init at 1.3.1

* requires xcode
2018-04-21 14:37:56 -05:00
Jörg Thalheim
b1d4962d67 perlPackages.MNI-Perllib: use callPackage instead of import 2018-04-21 20:24:43 +01:00
Jörg Thalheim
f7785dd61c
Merge branch 'master' into minc_ecosystem 2018-04-21 20:18:27 +01:00
Jörg Thalheim
38d6decac3
Merge pull request #38804 from timokau/sympow-init
sympow: init at 1.018.1
2018-04-21 19:46:59 +01:00
Jörg Thalheim
f6dfa072b4
Merge pull request #39203 from typetetris/master
fetchFromGitLab: Fixes #39200
2018-04-21 18:57:55 +01:00
bfortz
ba8ef6184c minergate: init at 8.1 (#39302) 2018-04-21 18:33:13 +01:00
Jörg Thalheim
a769ffc85c
Merge pull request #39056 from mt-caret/jumanpp
jumanpp: init at 1.02
2018-04-21 10:27:57 +01:00
Jörg Thalheim
193194db67
Merge pull request #39262 from Lassulus/digit_aliases
aliases: remove broken digit aliases
2018-04-21 10:18:28 +01:00
Frederik Rietdijk
e68f820cc4 dashing: don't use callPackages (note the s)
cc @peterhoeg @matthiasbeyer
2018-04-21 09:36:12 +02:00
Matthew Justin Bauer
f55d6bbefe
Merge pull request #39275 from ciil/gnushogi
gnushogi: init at 1.4.2
2018-04-21 01:46:40 -05:00
Matthew Justin Bauer
6d3df0ee23
Merge pull request #35276 from rdanitz/feat/perl/ical-parser
perl-iCal-Parser: init at 1.21
2018-04-20 18:34:11 -05:00
Florian Jacob
3d974552f3 canonicaljson: 1.0.0 -> 1.1.3 2018-04-20 22:38:44 +02:00
Wout Mertens
77a1993b46
Merge pull request #38918 from gnidorah/gitweb
nixos/gitweb: add gitwebTheme option
2018-04-20 21:32:34 +02:00
Simon Lackerbauer
4a78942c75
gnushogi: init at 1.4.2 2018-04-20 21:01:04 +02:00
James Kay
cf351f6389
atlassian-cli: init at 7.8.0 2018-04-20 19:01:35 +01:00
lassulus
7a04c6fc58 aliases: remove broken digit aliases 2018-04-20 17:03:39 +02:00
Tristan Helmich
2d44db519e grepcidr: init at 2.0 (#38685) 2018-04-20 15:40:28 +02:00
Yegor Timoshenko
a731dfce68
Merge pull request #33596 from yegortimoshenko/20180108.033429/wine
wine: wineStaging -> wine-staging, add wine-development, use full scheme for wine-stable
2018-04-20 13:04:29 +03:00
Timo Kaufmann
f8fbe0f157 sympow: init at 1.018.1 2018-04-20 10:28:44 +02:00
Eric Wolf
93e9b73b3a fetchFromGitLab: Fixes #39200 2018-04-20 10:11:34 +02:00
Will Dietz
f08f7d6099
Merge pull request #39174 from xeji/gede-qt5
gede: switch to qt5
2018-04-19 16:27:24 -05:00
xeji
582774828a gede: switch to qt5 2018-04-19 23:00:08 +02:00
John Ericson
cf0dd1dbd2
Merge pull request #39172 from obsidiansystems/ios-cross
ios-sdk-pkgs: Init from iOS SDK from XCode
2018-04-19 17:00:05 -04:00
Ken Micklas
ef3db7d14c ios-sdk-pkgs: Init from iOS SDK from XCode 2018-04-19 16:09:30 -04:00
vodkabot
e8c936556d twilight: init at 2018-04-19 2018-04-19 21:54:09 +03:00
worldofpeace
754b30ef00 wire-desktop: init at 3.0.2816 2018-04-19 13:50:35 -04:00
Matthew Justin Bauer
6548559061
Merge pull request #38656 from krav/master
sleepyhead: init at 1.0.0-beta
2018-04-19 12:20:52 -05:00
Will Dietz
93814ed41c
Merge pull request #39150 from dtzWill/feature/rw
rw: init at 1.0
2018-04-19 12:20:16 -05:00
Matthew Justin Bauer
a5b8b2e0cf
Merge pull request #38970 from thorstenweber83/add-pkg-fstl
fstl: init at 0.9.3
2018-04-19 12:01:54 -05:00
nocent
4959111f30 bonzomatic: init at 2018-03-29 2018-04-19 19:01:26 +02:00
Yegor Timoshenko
443af66526
Merge pull request #38109 from sengaya/add-ansible25
ansible_2_5: init at 2.5.0
2018-04-19 16:57:16 +00:00
Ken Micklas
b1a8894a1c wrapBintoolsWith: Allow overriding extraBuildCommands 2018-04-19 11:39:07 -04:00
Will Dietz
2aff3da773 rw: init at 1.0 2018-04-19 07:42:36 -05:00
Timo Kaufmann
d8e5160b23 planarity: init at 3.0.0.5 (#38800) 2018-04-19 08:43:44 +02:00
Timo Kaufmann
ddb7c0e930 lrcalc: init at 1.2 (#38755) 2018-04-19 08:42:06 +02:00
Peter Hoeg
6cc5bd1cd1
Merge pull request #38813 from matthiasbeyer/add-dashing
dashing: init at 2018-02-15
2018-04-19 04:57:01 +00:00
Silvan Mosberger
6026e43bce
dust: init at 0.2.3 2018-04-18 22:18:58 +02:00
Matthias Beyer
0f32914164 dashing: init at 2018-02-15 2018-04-18 18:05:50 +02:00
Vincent Laporte
76a43d765c coq: 8.8+beta1 -> 8.8.0 2018-04-18 14:37:04 +02:00
Vincent Laporte
20c035b906 ocamlPackages.js_of_ocaml-tyxml: init at 3.1.0 2018-04-18 09:38:23 +02:00
Jan Tojnar
6bf47e0d77
mypaint-brushes: init at 1.3.0 2018-04-18 02:17:47 +02:00
Bas van Dijk
9c8fa9729c elk6: 6.2.3 -> 6.2.4 2018-04-18 00:38:48 +02:00
Bas van Dijk
1593ff3f51 elk5: 5.6.8 -> 5.6.9 2018-04-18 00:38:48 +02:00
Bas van Dijk
54e6c0e7ae elk6: 6.2.2 -> 6.2.3 2018-04-18 00:32:57 +02:00
Bas van Dijk
b3e94a2385 elk6: 6.1.2 -> 6.2.2 2018-04-18 00:32:57 +02:00
Bas van Dijk
390abceb2b elk5: 5.6.6 -> 5.6.8 2018-04-18 00:32:57 +02:00
Matthew Bauer
1592e03aba treewide: rename bad filenames
Most of these can easily be moved to subdirectories of other
directories. This helps reduce clutter in the main trees.
2018-04-17 15:42:25 -05:00
Matthew Bauer
ddaea6ac77 pkgs/shells: move extensions to subdirs
These are not reaal shells and should go into their parent shell
directory.
2018-04-17 14:47:32 -05:00
Matthew Bauer
52893d5276 treewide: move "extensions" drvs to dir
This cleans up the tree for pkgs/applications somewhat. Should not
change any hashes.
2018-04-17 13:50:49 -05:00
Matthew Bauer
6c182dd14d Revert "hfsprogs: init at 332.25"
This reverts commit d0dcad3b91.

diskdev_cmds is now packaged as darwin.diskdev_cmds. Linux support is
unknown right now (but PRs are accepted).
2018-04-17 12:40:16 -05:00
gnidorah
9029ed933c nixos/gitweb: add gitwebTheme option 2018-04-17 20:07:01 +03:00
Jörg Thalheim
4b7abf3633
Merge pull request #39075 from Ma27/fix-gflags-package-duplication
gflags: alias to google-gflags
2018-04-17 16:42:08 +01:00
mt_caret
e612848893 glbinding: init at 2.1.4 (#36752)
* glbinding: init at 2.1.4

* fix meta attribute
2018-04-17 10:35:23 -05:00
volth
9b87fbb130 processing3: init at 3.3.7 (#36851)
* processing3: init at 3.3.7

* processing: add _JAVA_OPTIONS -Dawt.useSystemAAFontSettings=lcd

it uses own ttf fonts which expect antialiasing
2018-04-17 10:24:47 -05:00
Matthew Justin Bauer
1edf668a1c
Merge pull request #36790 from pjan/tmux-plugins
adds tmuxPlugins
2018-04-17 10:24:10 -05:00
Maximilian Bosch
6c01c7fcff
gflags: alias to google-gflags
Both packages referred to the same repo (`gflags/gflags` at GitHub),
both packages used almost the same version (2.2.1 and 2.2.0). Therefore
I think that it's just fair to drop one of the packages to avoid
duplication and reduce the maintenance overload.

I decided to drop `gflags` originally packaged by @shlevy as it didn't
contain testing support as `google-gflags` does. The package set refers
from `gflags` to `google-gflags`, so both package names remain (to avoid
any confusions), however the `gflags` expression is removed.
2018-04-17 17:23:25 +02:00
mt_caret
05bebd7215 sweep-visualizer: init at 0.15.0 (#38607)
* sweep-visualizer: init at 0.15.0

* restrict platform

* fix maintainers

* fix license attribute
2018-04-17 10:06:41 -05:00
Matthew Justin Bauer
aa22581479
Merge pull request #38327 from Ma27/package-react-native-debugger
react-native-debugger: init at 0.7.18
2018-04-17 10:02:14 -05:00
Matthew Justin Bauer
09b5678dae
Merge pull request #38440 from veprbl/arrow_cpp_reopen
Add arrow-cpp, parquet-cpp, pythonPackages.pyarrow
2018-04-17 10:01:46 -05:00
Matthew Justin Bauer
23eac59f88
Merge pull request #38032 from romildo/deepin
deepin: use libsForQt5 in meta package
2018-04-17 09:55:21 -05:00
Jörg Thalheim
5dc7a70f65
Merge pull request #38589 from badi/tlatools
Add TLAPS and TLA+ Toolbox
2018-04-17 14:51:35 +01:00
Jörg Thalheim
9758c498f9
Merge pull request #38907 from timokau/eli-init
eli: init at 4.8.1
2018-04-17 14:49:21 +01:00
Jörg Thalheim
be5ad658df
Merge pull request #38971 from knedlsepp/fix-darwin-gpu-stuff
Fix clblas and libgpuarray on darwin
2018-04-17 13:58:54 +01:00
Vladimír Čunát
db071c4d1d
Merge #38702: Mark packages as broken (ZHF) 2018-04-17 13:36:20 +02:00
Robert Schütz
c6a8b90d15
Merge pull request #34296 from fgaz/isso
Isso: init at 0.10.6 (plus dependencies)
2018-04-17 11:57:32 +02:00
Masayuki Takeda
4f784cd2da jumanpp: init at 1.02 2018-04-17 18:37:44 +09:00
Badi Abdul-Wahid
c4ef846c92
tlaplusToolbox: init at 1.5.6 2018-04-16 22:18:47 -04:00
Badi Abdul-Wahid
d14a476054
tlaps: init at 1.4.3 2018-04-16 21:18:42 -04:00
Thorsten Weber
a4f8090fbe fstl: init at 0.9.3 2018-04-16 19:59:05 +02:00
Yorick van Pelt
2c5efc8735
rocksdb: use jemalloc 4.5.0 2018-04-16 12:31:27 +02:00
Yorick van Pelt
d536542ee4
jemalloc: add 4.5.0 version 2018-04-16 12:31:26 +02:00
Peter Hoeg
1441787c84 kirigami: dump deprecated/unmaintained kirigami1 2018-04-16 16:15:29 +08:00
Peter Hoeg
c859867e42 pythonPackages.warrant: init at 0.6.1 2018-04-16 07:58:28 +02:00
Peter Hoeg
764d03decc pythonPackages.envs: init at 1.2.4 2018-04-16 07:58:21 +02:00