Commit Graph

13764 Commits

Author SHA1 Message Date
Aristid Breitkreuz 0c7db6c696 jpegoptim: init at 1.4.3 2015-12-31 16:55:50 +01:00
Peter Simons 1b7c1fb382 Merge pull request #11931 from luispedro/add_chessx_stockfish
Add chessx and stockfish (chess engine)
2015-12-31 01:16:38 +01:00
Luis Pedro Coelho c570bc50bc chessx: init at 1.3.2
Chessx is a chess database GUI. Using the stockfish engine, users can
also analyse games.
2015-12-30 23:19:44 +01:00
Luis Pedro Coelho 8bec69e9c8 stockfish: init at 6 2015-12-30 23:19:39 +01:00
Michael Raskin d27dd12571 Merge pull request #12043 from rycee/migrate/stdenv
Migrate some more packages from builderDefsPackage to stdenv
2015-12-30 21:26:00 +01:00
Robert Helgesson 318a0c9f3f flightgear: use fltk with XFT support
Without XFT the Flight Gear compilation fails with an undefined
reference to `XGetUtf8FontAndGlyph`.
2015-12-30 21:17:39 +01:00
Robert Helgesson 73ede34fe5 vbetool: use stdenv
This replaces use of `builderDefsPackage`.
2015-12-30 21:15:15 +01:00
Arseniy Seroka 51c9093ce7 Merge pull request #12025 from VShell/icestorm
yosys, arachne-pnr, icestorm: init
2015-12-30 20:44:05 +03:00
Shell Turner c485543c7c yosys: init at 2015.12.29 2015-12-30 16:52:41 +00:00
Shell Turner f11ec866ad arachne-pnr: init at 2015.12.29 2015-12-30 16:52:41 +00:00
Shell Turner c1ec39d47b icestorm: init at 2015.12.29 2015-12-30 16:52:41 +00:00
Arseniy Seroka 640d861d13 Merge pull request #12020 from ehmry/windowlab
WindowLab: initial pkg at 1.40
2015-12-30 18:07:20 +03:00
Emery 952563d620 WindowLab: initial pkg at 1.40
http://nickgravgaard.com/windowlab/
2015-12-30 11:10:30 +01:00
Reno Reckling a1e0894cb4 ding: init at 1.8 (close #11989)
vcunat improved meta.
2015-12-29 21:03:19 +01:00
Domen Kožar bea60e1409 Merge pull request #12026 from rycee/migrate/stdenv
Migrate packages in games to stdenv from builderDefsPackage
2015-12-29 21:00:22 +01:00
Robert Helgesson 281b584e4a liquidwar: use stdenv
This replaces use of builderDefsPackage (#4210).
2015-12-29 20:31:01 +01:00
Vladimír Čunát 08dd527cc7 Merge branch 'staging'
http://hydra.nixos.org/eval/1234895
The mass errors on Hydra seem transient; I verified ghc on i686-linux.
Only darwin jobs are queued ATM. There's a libpng security update
included in this merge, so I don't want to wait too long.
2015-12-29 17:14:35 +01:00
Vladimír Čunát b91dcad4bc fetchFromBitBucket: auto-remove an impure file
Also fix the hash in goPackages.inflect, the only user of the fetcher ATM.
Closes #12002 (different `inflect` fix), fixes #12012.
Using fetchzip-derived functions is likely more efficient than fetchhg,
and it's lighter on dependencies (hash is the same as with fetchhg in this case).
2015-12-29 16:54:50 +01:00
Jakob Gillich 36a4600422 remove fetchFromGitorious (close #12024)
The site has retired and it's not used by anything.
2015-12-29 16:33:15 +01:00
Charles Strahan b6c06e216b ruby: new bundler infrastructure
This improves our Bundler integration (i.e. `bundlerEnv`).

Before describing the implementation differences, I'd like to point a
breaking change: buildRubyGem now expects `gemName` and `version` as
arguments, rather than a `name` attribute in the form of
"<gem-name>-<version>".

Now for the differences in implementation.

The previous implementation installed all gems at once in a single
derivation. This was made possible by using a set of monkey-patches to
prevent Bundler from downloading gems impurely, and to help Bundler
find and activate all required gems prior to installation. This had
several downsides:

* The patches were really hard to understand, and required subtle
  interaction with the rest of the build environment.
* A single install failure would cause the entire derivation to fail.

The new implementation takes a different approach: we install gems into
separate derivations, and then present Bundler with a symlink forest
thereof. This has a couple benefits over the existing approach:

* Fewer patches are required, with less interplay with the rest of the
  build environment.
* Changes to one gem no longer cause a rebuild of the entire dependency
  graph.
* Builds take 20% less time (using gitlab as a reference).

It's unfortunate that we still have to muck with Bundler's internals,
though it's unavoidable with the way that Bundler is currently designed.
There are a number improvements that could be made in Bundler that would
simplify our packaging story:

* Bundler requires all installed gems reside within the same prefix
  (GEM_HOME), unlike RubyGems which allows for multiple prefixes to
  be specified through GEM_PATH. It would be ideal if Bundler allowed
  for packages to be installed and sourced from multiple prefixes.
* Bundler installs git sources very differently from how RubyGems
  installs gem packages, and, unlike RubyGems, it doesn't provide a
  public interface (CLI or programmatic) to guide the installation of a
  single gem. We are presented with the options of either
  reimplementing a considerable portion Bundler, or patch and use parts
  of its internals; I choose the latter. Ideally, there would be a way
  to install gems from git sources in a manner similar to how we drive
  `gem` to install gem packages.
* When a bundled program is executed (via `bundle exec` or a
  binstub that does `require 'bundler/setup'`), the setup process reads
  the Gemfile.lock, activates the dependencies, re-serializes the lock
  file it read earlier, and then attempts to overwrite the Gemfile.lock
  if the contents aren't bit-identical. I think the reasoning is that
  by merely running an application with a newer version of Bundler, you'll
  automatically keep the Gemfile.lock up-to-date with any changes in the
  format. Unfortunately, that doesn't play well with any form of
  packaging, because bundler will immediately cause the application to
  abort when it attempts to write to the read-only Gemfile.lock in the
  store. We work around this by normalizing the Gemfile.lock with the
  version of Bundler that we'll use at runtime before we copy it into
  the store. This feels fragile, but it's the best we can do without
  changes upstream, or resorting to more delicate hacks.

With all of the challenges in using Bundler, one might wonder why we
can't just cut Bundler out of the picture and use RubyGems. After all,
Nix provides most of the isolation that Bundler is used for anyway.

The problem, however, is that almost every Rails application calls
`Bundler::require` at startup (by way of the default project templates).
Because bundler will then, by default, `require` each gem listed in the
Gemfile, Rails applications are almost always written such that none of
the source files explicitly require their dependencies. That leaves us
with two options: support and use Bundler, or maintain massive patches
for every Rails application that we package.

Closes #8612
2015-12-29 09:30:21 -05:00
Arseniy Seroka 19b6034135 Merge pull request #11995 from dezgeg/pr-yledl
yle-dl: init at 2.9.1
2015-12-29 14:59:20 +03:00
Robin Gloster 729fb7a440 virt-viewer: fix build and clean up 2015-12-28 21:44:12 +00:00
Domen Kožar 0fa8f6b36b nodePackages_0_5: don't recurseIntoAttrs
Two reasons for this change:

- most of 5.0 packages don't build yet

- node packages are memory intensive and block Hydra evaluation
  (Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS)

PS: Removing node packages from evaluation goes from 7.5G down to
4.6G for whole nixos release job.

See #3594 and #11865
2015-12-28 12:16:22 +01:00
Domen Kožar 688ff0c0dc Merge pull request #11992 from dezgeg/pr-update-diffoscope
diffoscope: 29 -> 44
2015-12-28 07:46:12 +01:00
Tuomas Tynkkynen 5120601c28 yle-dl: init at 2.9.1 2015-12-28 06:05:01 +02:00
Tuomas Tynkkynen eae60d2f40 diffoscope: Add more tools to the runtime path 2015-12-28 02:28:01 +02:00
Tuomas Tynkkynen 7e85fdc6df diffoscope: 29 -> 44
Relevant changes:
 - Python version switched to Python 3
 - ssdeep library got replaced with tlsh
 - the 'magic' Python package got replaced with a different one
 - Minor build system improvements == less work for us
2015-12-28 02:27:44 +02:00
Tobias Geerinckx-Rice ee0fae473c crda: init at 3.18 2015-12-27 19:00:42 +01:00
Tobias Geerinckx-Rice b88abaaf5e wireless-regdb: init at 2015-12-14 2015-12-27 19:00:42 +01:00
Michael Raskin 56aa0ff1d9 runzip: init at 1.4 2015-12-27 14:23:52 +01:00
Tobias Geerinckx-Rice cf699caf4d saneBackends: don't add option for 1 udev rule 2015-12-26 19:50:17 +01:00
Peter Simons d9ad002b2c Prefer GnuPG 2.0.x by default.
"nix-env -iA gnupg" installs the 2.0.x version of GNU Privacy Guard. This patch
ensures that "nix-env -i gnupg" chooses the same version, instead of installing
GnuPG 2.1.x, which is considered a "development version".

Closes https://github.com/NixOS/nixpkgs/issues/11899.
2015-12-26 13:42:53 +01:00
Jakob Gillich ac7e923104 fish: add module to support it as default shell
* Patched fish to load /etc/fish/config.fish if it exists (by default,
  it only loads config relative to itself)
* Added fish-foreign-env package to parse the system environment

closes #5331
2015-12-26 06:25:23 +01:00
Arseniy Seroka 37d0947e0c Merge pull request #11841 from phunehehe/archiveopteryx
add archiveopteryx 3.2.0
2015-12-26 00:36:55 +03:00
Lengyel Balázs 0ca96aa43c wine: add initial pulseaudio support 2015-12-25 00:40:26 +01:00
Thomas Tuegel 6e27454728 sddm: build with Qt 5.5 2015-12-24 10:08:32 -06:00
Robert Helgesson d491005da1 josm: init at 9060 2015-12-24 14:50:11 +01:00
Robert Helgesson 8c4bfb747e gpsprune: init at 18.2 2015-12-24 14:48:57 +01:00
Hoang Xuan Phu b8bc82a459 archiveopteryx: init at 3.2.0 2015-12-24 15:22:44 +08:00
Tobias Geerinckx-Rice 6a76cd1336 saneBackends: drop libusb override; use libusb1 directly 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 58bf694071 saneBackends: factor out common code into generic.nix
The git version was duplicated from the stable one and the two had
begun to diverge significantly. For example, commit
88d731925d fixed a supposedly real
bug — but only in the stable package.

Factor out the shared code to avoid trouble — or worse, subtle
differences or bugs — in future.
2015-12-24 04:05:57 +01:00
Thomas Tuegel 965cfccfa5 kde5: add attributes for individual KDE collections 2015-12-23 18:03:55 -06:00
Thomas Tuegel 558f14a094 kde5: build with Qt 5.5 2015-12-23 17:03:21 -06:00
Vladimír Čunát 11c702c582 Merge master into staging 2015-12-23 18:57:35 +01:00
Nicole Angel 90e881eece keepass: load plugins from store paths, fixes #11206 2015-12-23 02:12:36 +01:00
Tim Williams e2a25433b2 copyq: init at 2.5.0, fixed #11887 2015-12-23 01:58:59 +01:00
Derek Gonyeo 9671674959 acbuild: 0.1.1 -> 0.2.2 and moved to own default.nix, fixes #11889 2015-12-23 01:33:37 +01:00
Arseniy Seroka 87d2532f82 Merge pull request #11879 from aneeshusa/update-vagrant-to-1.8.0
vagrant: 1.7.4 -> 1.8.0
2015-12-22 17:51:35 +03:00
Aneesh Agrawal 53a5a44190 vagrant: 1.7.4 -> 1.8.0 2015-12-22 05:55:48 -05:00
Thomas Strobel d856841ba4 nixos trustedGRUB: add support for HP laptops 2015-12-22 03:12:30 +01:00
Alexander Shabalin d76c26e876 gibo: init at 1.0.4, fixes #11871 2015-12-22 02:43:24 +01:00
Charles Strahan 60df6fdd34 vanilla-dmz: init at 0.4.4, fixes #11102
Vanilla DMZ cursor theme
2015-12-22 02:28:08 +01:00
Alexander Shabalin a0138e1ed5 dynamic-colors: init at 2013-12-28, fixes #11874 2015-12-22 02:04:06 +01:00
Rok Garbas 38a6b5fb43 Merge pull request #11683 from rvl/fail2ban
Make fail2ban work again
2015-12-22 01:46:18 +01:00
Pascal Wittmann bf47b58f21 Merge pull request #11868 from gebner/ipaexfont
ipaexfont: init at 003.01
2015-12-22 00:32:44 +01:00
Gabriel Ebner 7e23ffd2c8 ipaexfont: init at 003.01 2015-12-21 17:49:06 +01:00
Arseniy Seroka 0cd13e6b7b Merge pull request #11853 from NeQuissimus/gradle29
gradle: 2.8 -> 2.9
2015-12-21 19:42:21 +03:00
Tim Steinbach 9121277144 gradle: 2.8 -> 2.9 2015-12-21 11:37:21 -05:00
obadz 29c676e73d pdfmod: init at 0.9.1 (close #11417)
vcunat did some cosmetic changes, such as joining lines
because we seem to rarely use one-identifier-per-line style,
or fixing hyena description to conform to our rules.
2015-12-21 15:19:36 +01:00
Thomas Tuegel 226a83edd8 Merge pull request #11300 from obadz/go-pup
go/pup: init at 0.3.9
2015-12-21 07:54:24 -06:00
Thomas Tuegel 5ff1c58606 Merge pull request #11839 from ttuegel/qt-5.4
Qt infrastructure update
2015-12-20 08:11:52 -06:00
Thomas Tuegel 298c4befda phonon-backend-vlc: normalize attribute name to upstream 2015-12-20 08:03:26 -06:00
Thomas Tuegel 27c522cc3b phonon-backend-gstreamer: normalize attribute name to upstream 2015-12-20 08:02:42 -06:00
Thomas Tuegel 85c19f8fb4 smtube: Qt 5 infrastructure update 2015-12-20 07:56:55 -06:00
Thomas Tuegel d534d5f097 smplayer: Qt 5 infrastructure upgrade 2015-12-20 07:56:55 -06:00
Thomas Tuegel 5810f0e7ed tomahawk: Qt 5 infrastructure upgrade 2015-12-20 07:56:55 -06:00
Thomas Tuegel 54bcdcc0a7 teamspeak_client: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel 143d6123dc qutebrowser: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel 1d331481fc quazip: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel 538ce57feb qtcreator: Qt 5 infrastructure update 2015-12-20 07:56:53 -06:00
Thomas Tuegel 9d79319eae remove qt5Libs 2015-12-20 07:56:52 -06:00
Thomas Tuegel 660736def8 polkit-qt: normalize package name to upstream 2015-12-20 07:56:51 -06:00
Thomas Tuegel e782026719 poppler: normalize package name to upstream 2015-12-20 07:56:51 -06:00
Thomas Tuegel 17e17ea649 cmst: Qt 5 infrastructure update 2015-12-20 07:56:51 -06:00
Thomas Tuegel 97f7eb1e64 kst: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel 541b2f20de fritzing: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel fc13f37f2c firestr: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel de5898a495 qtox: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
Thomas Tuegel 249e5f732a linssid: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
Thomas Tuegel 4e71ebd7c9 dfilemanager: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel 88514fdf58 robomongo: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel 06f9ac71dc gpsbabel: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel 121f944d0d qtpass: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel 732de87786 twmn: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel 36dea909b7 calibre: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel e292103d46 tiled: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel 07a79f2a9b sigil: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel 5af2e7b76e rapcad: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel 3e6a70d974 phototonic: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel 8bbbb31f3f awesomebump: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel 1f28d76190 luminance-hdr: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel d086276c1e photoqt: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel b829137151 apitrace: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel a0bae9b571 obs-studio: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel ccdbc22836 shotcut: Qt 5 infrastructure update 2015-12-20 07:56:43 -06:00
Thomas Tuegel d405316398 bomi: Qt 5 infrastructure update 2015-12-20 07:56:43 -06:00
Thomas Tuegel 0b303f6edd mgba: Qt 5 infrastructure update 2015-12-20 07:56:42 -06:00
Thomas Tuegel 700546fd12 zeal: Qt 5 infrastructure update 2015-12-20 07:56:42 -06:00
Thomas Tuegel ad9ece4f92 qwt: Qt 5 infrastructure update 2015-12-20 07:56:41 -06:00
Thomas Tuegel 9a91200e9e phonon: Qt 5 infrastructure update 2015-12-20 07:56:41 -06:00
Thomas Tuegel d7dff0057c signon: Qt 5 infrastructure update 2015-12-20 07:56:40 -06:00
Thomas Tuegel 36ea03660e qca-qt5: Qt 5 infrastructure update 2015-12-20 07:56:40 -06:00
Thomas Tuegel b8b14eda69 phonon-backend-gstreamer: Qt 5 infrastructure update 2015-12-20 07:56:39 -06:00
Thomas Tuegel 26cf5db23f mlt: Qt 5 infrastructure update 2015-12-20 07:56:39 -06:00
Thomas Tuegel 68ff859bf0 dropbox: Qt 5 infrastructure update 2015-12-20 07:56:39 -06:00
Thomas Tuegel 2dc0062443 telepathy: Qt 5 infrastructure update 2015-12-20 07:56:38 -06:00
Thomas Tuegel f250a6e64e qt5: build env and full per version 2015-12-20 07:56:38 -06:00
Thomas Tuegel 7450865827 antimony: Qt 5 infrastructure update 2015-12-20 07:56:36 -06:00
Thomas Tuegel c1841675f3 antimicro: Qt 5 infrastructure update 2015-12-20 07:56:36 -06:00
Thomas Tuegel fef302e3e4 accounts-qt: Qt infrastructure update 2015-12-20 07:56:35 -06:00
Thomas Tuegel 2a8b6959cc libdbusmenu-qt: Qt 5 infrastructure update 2015-12-20 07:56:35 -06:00
Thomas Tuegel 664a64ef13 grantlee: Qt 5 infrastructure update 2015-12-20 07:56:35 -06:00
Arseniy Seroka 66b294dd48 Merge pull request #11811 from knedlsepp/grib-api
grib-api: init at 1.14.4
2015-12-20 15:08:03 +03:00
Josef Kemetmüller 5b553893c1 grib-api: init at 1.14.4 2015-12-20 11:52:58 +01:00
Tobias Geerinckx-Rice ca8903c3c2 include-what-you-use: use unversioned llvm attribute
...in the expression itself, while hard-coding the officially supported
version in all-packages.nix for sanity's sake (mine).
2015-12-20 03:22:24 +01:00
Thomas Tuegel 758901397b qt5LibsFun: build against all Qt 5 versions 2015-12-19 17:25:04 -06:00
Thomas Tuegel 1402c20bfd qt54: backport Qt infrastructure changes from Qt 5.5 2015-12-19 16:20:27 -06:00
Pascal Wittmann e0027501f1 Merge pull request #11659 from AndersonTorres/higan
Higan: 094 -> 095
2015-12-19 17:37:41 +01:00
Arseniy Seroka 6f4850fbe7 Merge pull request #11820 from lancelotsix/build_sview_with_slurm
pkgs.slurm-llnl-full: Add full variant of slurm-llnl
2015-12-19 19:29:25 +03:00
Lancelot SIX 53a3294e95 pkgs.slurm-llnl-full: Add full variant of slurm-llnl
Add a variant of slurm-llnl that includes sview (based on gtk).
pkgs.slurm-llnl also gains the ncurses-based smap tool.
2015-12-19 16:50:24 +01:00
Thomas Tuegel 540d028bf5 Merge pull request #11750 from ttuegel/emacs-packages
Emacs packages
2015-12-19 09:33:45 -06:00
Thomas Tuegel dadfd93811 emacsWithPackages: know its own package set
Fixes #10819. emacsWithPackages will know its own package set. This
requires it to be in a package set, rather than at the top level, so it
lives in emacsPackagesNg.
2015-12-19 09:31:41 -06:00
Domen Kožar 0e4e01c7a6 add back nixopsUnstable 2015-12-18 18:51:12 +01:00
Gaëtan André ff58a9831b matter-compiler: initial expression, fixes #11780 2015-12-18 15:49:57 +01:00
Peter Simons 817d6d5149 Merge pull request #11802 from aespinosa/add-missing-utmp-lib
screen: include the utmp from the apple_sdk
2015-12-18 11:42:45 +01:00
Peter Simons fced3e3222 haskellPackages: Stackage Nightly 2015-12-17 updates to GHC 7.10.3 2015-12-18 11:37:44 +01:00
Vladimír Čunát 1932d101e2 telepathy-qt: minor update, fix by patch, unify
- The patch fixes building against gst-1.6.
- Having to change three files with almost same contents would drive me mad,
  so I unified them into a single expression. /cc @ttuegel
- libxslt seemed unneeded, and it uses libxml2 anyway.
2015-12-18 11:06:46 +01:00
AndersonTorres 7070c2d900 Higan: 094 -> 095
In order to increase portability and flexibility, now the build phase
explicitly sets "compiler=c++" as a make parameter.
Further, there is a link "higan" for backwards compatibility; higan was
split in icarus (the game ROMS database manager) and tomoko (the
emulator itself).
2015-12-18 07:45:04 -02:00
Rodney Lorrimar 201859ea18 fail2ban: update python-systemd dependency
The python module has been split off from systemd since v223.
2015-12-18 09:44:22 +00:00
Allan Espinosa 37341582bb screen: include the utmp from the apple_sdk 2015-12-18 00:12:31 -06:00
aszlig ec3d068170
tomahawk: Build with older taglib version 1.9
The 0.8.4 version of Tomahawk doesn't yet recognize the new taglib
version that has been introduced in b762a20 and fails during
configurePhase.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-12-18 05:58:27 +01:00
Tobias Geerinckx-Rice 1e3314718d uksmtools: init at 2015-09-25 2015-12-17 23:51:43 +01:00
Rickard Nilsson c634e5cd24 Merge pull request #11730 from spwhitt/mopidy
Mopidy Improvements
2015-12-17 20:42:13 +01:00
Matthijs Steen f2a9837113 grml-zsh-config: init at 0.12.4 2015-12-17 16:29:00 +01:00
Pascal Wittmann 21522ede83 Merge pull request #11753 from nlewo/master
Add devpi-client and its dependencies
2015-12-17 16:21:46 +01:00
Pascal Wittmann 7dfe60b509 Merge pull request #11763 from DamienCassou/new-recordmydesktop
recordmydesktop: init at 0.3.8-svn602
2015-12-17 16:19:24 +01:00
Vladimír Čunát 5a129a8121 libffi: doCheck optionally and do so for glib-tested
This is kind-of reverting fcf99efcd.
2015-12-17 14:45:46 +01:00
Thomas Tuegel 78d68b8c14 emacsPackagesNg: don't expose package functions
Remove elpaPackages, melpaStablePackages, and melpaPackages from the
top-level.
2015-12-17 07:23:50 -06:00
Thomas Tuegel a338959da6 melpaStablePackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel 28af093438 melpaPackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel a4f4d1717d elpaPackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel e21f5f933c emacsPackagesNgGen: use import, not callPackage
`callPackage` should only be used for actual packages. Functions, like
`emacsPackagesNgGen`, should be `import`ed. This also has the effect of
exposing the `override` function provided by `makeScope` so that
`emacsPackagesNg.override` overrides the package set instead of
overriding the arguments to `emacsPackagesNgGen`.
2015-12-17 07:23:50 -06:00
Thomas Tuegel 8e655250bd emacsPackagesNg: add all of MELPA 2015-12-17 07:23:50 -06:00
Thomas Tuegel d69b5f9533 polkit_qt5: remove
The correct version is qt5Libs.polkitQt.
2015-12-17 05:51:59 -06:00
Thomas Tuegel a685f98627 calamares: move into kde5PackagesFun
All KDE 5 packages must be listed here to be packaged correctly.
2015-12-17 05:36:51 -06:00
Thomas Tuegel 89ecedcab8 kde5: don't expose secret top-level attributes 2015-12-17 05:34:41 -06:00
Antoine Eiche f21a65f719 devpi-client: init at 2.3.2 2015-12-17 09:34:13 +01:00
Domen Kožar 84a559393b mnemosyne: add webob dep (fixes #11746) 2015-12-17 09:30:02 +01:00
Arseniy Seroka 330afe9f4e Merge pull request #11075 from mogorman/pcb
pcb: new package
2015-12-17 09:13:54 +03:00
Damien Cassou 1bb68f0a5b recordmydesktop: init at 0.3.8-svn602 2015-12-17 06:47:02 +01:00
Thomas Tuegel f51c54ba02 kde4.kdelibs: fix link to kde5.kdelibs 2015-12-16 19:12:39 -06:00
Thomas Tuegel 0a81a0d8ff kde5: Frameworks 5.17, Plasma 5.5.1, Applications 15.12.0
The stable `kde5` attribute is updated to these versions. The old
versions have been removed.
2015-12-16 19:08:06 -06:00
Matthew O'Gorman 09aff6c104
pcb: init at 20140316 2015-12-16 19:29:17 -05:00
John Wiegley 59213cc1da emacs25pre: New expression, from emacs-25 pre-release branch 2015-12-16 15:13:16 -08:00
Eelco Dolstra b797a67ffb awesomebump: Add 2015-12-16 23:31:41 +01:00
Eelco Dolstra 79a3c8a952 9pfs: Add
This is a FUSE-based 9p client.
2015-12-16 20:31:14 +01:00
Pascal Wittmann f45b8176c0 Merge pull request #11074 from mogorman/gerbv
gerbv: new package
2015-12-16 18:13:20 +01:00
Thomas Tuegel cc058eff70 kde5_latest: merge all package sets
The three KDE package sets now have circular dependencies between them,
so they can only be built if they are merged into a single package set
during evaluation.
2015-12-16 10:22:43 -06:00
Thomas Tuegel 72014cade6 cutegram: fix evaluation error
See discussion on #11684.
2015-12-16 08:42:11 -06:00
Eelco Dolstra 64792ffdaa subversion: Use callPackages 2015-12-16 15:21:58 +01:00
Oliver Charles 35f8952a8c Merge pull request #11338 from obadz/light-locker
light-locker (lockscreen for lightdm)
2015-12-16 13:45:05 +00:00
Arseniy Seroka 2542e92ca0 Merge pull request #11684 from Profpatsch/cutegram
Cutegram
2015-12-16 10:47:48 +03:00
Spencer Whitt 4446b078fc mopidy-spotify-tunigo: init at 0.2.1 2015-12-15 22:38:15 -05:00
Spencer Whitt a03b98271a mopidy-musicbox-webclient: init at 2.0.0 2015-12-15 22:38:14 -05:00
Spencer Whitt 7e71068510 mopidy-soundcloud: init at 2.0.1 2015-12-15 22:38:14 -05:00
Spencer Whitt 47cbbc3abe mopidy-youtube: init at 2.0.1 2015-12-15 22:38:14 -05:00
Matthew O'Gorman a76241c6cb
gerbv: init at git-2015-10-07 2015-12-15 21:11:54 -05:00
Profpatsch 9c5cd49903 cutegram: init at 2.7.0-stable 2015-12-16 02:08:49 +01:00
Domen Kožar a2f8812096 add numad: daemon that manages application locality 2015-12-15 23:41:43 +01:00
Vincent Laporte 48e7eb65f2 ocaml-iso8601: init at 0.2.4
OCaml library for ISO 8601 and RFC 3999 date parsing.

Homepage: http://sagotch.github.io/ISO8601.ml/
2015-12-15 22:43:25 +01:00
Vincent Laporte 4a00e1793b ocaml-tuntap: init at 1.3.0 2015-12-15 21:57:54 +01:00
Peter Simons 82c673d4c9 Merge pull request #11651 from gleber/add-erlang-modules
Add erlang modules
2015-12-15 17:55:25 +01:00
obadz c7738364b5 light-locker: init at 1.7.0 2015-12-15 08:49:05 -06:00
obadz 074dfbe516 go/pup: init at 0.3.9
(also required go/color: init at 9aae6aa)
2015-12-15 07:37:35 -06:00
Gleb Peregud 033902d269 Refactor fetchHex out of buildHex.
This will allow to reuse this code to fetch rebar3's dependencies to
ensure it's hermetic build.
2015-12-15 14:01:38 +01:00
Gleb Peregud a05e2dbe65 Add few erlang modules 2015-12-15 14:01:21 +01:00
Arseniy Seroka b941f3b4d2 Merge pull request #11735 from robberer/pkgs/terraria
add Terraria dedicated server for Linux x86_64
2015-12-15 14:59:22 +03:00
System administrator 6d3a89f6da terraria-server: add dedicated server version 1308 for Linux x86_64
fix

fix

limit to 64bit linux
2015-12-15 12:56:30 +01:00
Rickard Nilsson 46905425cf Merge pull request #11477 from jgillich/mopidy-gmusic
mopidy-gmusic: init at 1.0.0
2015-12-15 10:15:51 +01:00
Gleb Peregud bcc4ca029a Add rebar3 package 2015-12-15 01:02:52 +01:00
Tobias Geerinckx-Rice 0a35ffaace ms-sys: deprecate mssys attribute name 2015-12-14 23:32:18 +01:00
Jakob Gillich 872d0be1a0 mopidy-gmusic: init at 1.0.0 2015-12-14 14:38:58 +01:00
Domen Kožar 98101e1fe1 Merge pull request #11673 from mayflower/openssl-versioning
openssl -> openssl_1_0_1
2015-12-13 14:06:17 +01:00
Nikolay Amiantov 2678e0ce02 zandronum: unify packages, fix building, cleanup 2015-12-13 15:14:11 +03:00
Robin Gloster dc7d09f6a4 openssl -> openssl_1_0_1
This renames the current openssl to openssl_1_0_1 and defaults
openssl back to openssl_1_0_1 essentially changing nothing currently,
but allowing people to explicitly select openssl_1_0_1 for some software
which needs ABI compatibility to a specific libssl implementation like
binaries (spotify amongst others) and at the same time overriding
openssl to another implementation like libressl.
2015-12-13 11:00:21 +00:00
Anders Papitto 9f71bba8a4 libb64: init at 1.2 2015-12-12 12:31:28 -08:00
goibhniu 9474d6b99a Merge pull request #11653 from mayflower/libressl-fetchurlBoot
use fetchurlBoot in libressl
2015-12-12 20:33:29 +01:00
Thomas Tuegel f7edf63b23 ipe: use texlive-new 2015-12-12 10:57:38 -06:00
Thomas Tuegel 08d842ea09 Merge branch 'kde-frameworks-5.17' 2015-12-12 10:45:13 -06:00
Michael Raskin 19aa4f0a6b pixz: init at 1.0.6 2015-12-12 17:39:14 +01:00
Thomas Tuegel 28b74a05af remove kf516 2015-12-12 08:09:48 -06:00
Robin Gloster 77463eec42 use fetchurlBoot in libressl 2015-12-12 13:27:50 +00:00
Thomas Tuegel e3aa60ed81 kf517: init at 5.17.0 2015-12-12 07:14:47 -06:00
David A Roberts 7200a5c079 cmdstan: init at 2.9.0 2015-12-12 22:42:01 +10:00
Profpatsch 7b407414a4 telegram: create explicit folder
Will be used for other tools coming soon™.
2015-12-12 13:27:03 +01:00
goibhniu 5a4be85b3a Merge pull request #11579 from mayflower/pkg/redir
redir: init at 2.2.1
2015-12-12 12:04:02 +01:00
Michael Raskin 154e88ab3f xprintidel-ng: init at git-2015-09-01 2015-12-12 11:47:18 +01:00
Roel van Dijk b0bb9cd5fe fontmatrix: init at 0.6.0 2015-12-11 14:50:16 +01:00
Domen Kožar 710f603d2b Merge pull request #11359 from FRidh/fftw
python FFTW bindings.
2015-12-11 14:29:01 +01:00
Thomas Tuegel 3960ecb933 Merge branch 'plasma-5.5' 2015-12-11 07:21:50 -06:00
Thomas Tuegel 78a6d62b48 sddm: wrap to include themes 2015-12-11 07:09:07 -06:00
Sou Bunnbu c03b26ee08 Merge pull request #11491 from bjornfor/pitivi-0.95
gstreamer 1.4 -> 1.6 and pitivi 0.94 -> 0.95
2015-12-11 21:00:31 +08:00
aszlig 873096ab7a
all-packages: Fix typo in "pythonpackages".
Regression introduced by 515a13b1f5.

All lower-case won't evaluate very well.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-12-11 13:43:29 +01:00
Frederik Rietdijk f2ac29648a python ansible2: move to python-packages.nix 2015-12-11 11:28:33 +01:00
Frederik Rietdijk 14167636fc python ansible: move to python-packages.nix 2015-12-11 11:28:33 +01:00
Frederik Rietdijk a82fd1730c python awscli: 1.9.6 -> 1.9.12 2015-12-11 11:28:33 +01:00
Frederik Rietdijk b2d9b48c97 python awscli: move to python-packages.nix 2015-12-11 11:28:32 +01:00
Frederik Rietdijk 515a13b1f5 python pyside: move callPackage to python-packages.nix
This should make pyside available for all Python versions.
2015-12-11 11:28:32 +01:00
Frederik Rietdijk 6938b74d2c python dbus: use callPackage in python-packages.nix 2015-12-11 11:28:31 +01:00
Frederik Rietdijk 8a61d3699f python pycangjie: call package from python-packages.nix 2015-12-11 11:28:31 +01:00
Frederik Rietdijk 9186d3169a python irclib: move expression to python-packages.nix
- Use external paver instead of built-in
- Only works with Python 2.x
2015-12-11 11:28:30 +01:00
Frederik Rietdijk d2b7b5660b python mygpoclient: move expression to python-packages.nix 2015-12-11 11:28:30 +01:00
Frederik Rietdijk 3c5e03d8c0 python xmpppy: move expression to python-packages.nix 2015-12-11 10:45:24 +01:00
Frederik Rietdijk e60da70c3b python slowaes: move expression to python-packages.nix 2015-12-11 10:45:24 +01:00
Frederik Rietdijk f9acc95a09 python rbtools: move expression to python-packages.nix
cc @domenkozar
2015-12-11 10:45:20 +01:00
Frederik Rietdijk 3e75b475f8 python pyx: 0.10 -> 0.14.1 rewrite expression
- Update version
- Rewrite expression using buildPythonPackage
- Current version only works of PyX only works with Python >= 3.2
2015-12-11 10:41:38 +01:00
Frederik Rietdijk 4c0bc553f5 python pygtksourceview: move callPackage to python-packages.nix 2015-12-11 10:41:38 +01:00
Frederik Rietdijk bc97b365d3 python pygame: move callPackage to python-packages.nix 2015-12-11 10:41:38 +01:00
Frederik Rietdijk 292b943ec6 python pyqt4: use version already in python-packages.nix 2015-12-11 10:41:38 +01:00
Frederik Rietdijk 88bcfa6441 python pycups: 1.9.68 -> 1.9.73 and move expression 2015-12-11 10:41:37 +01:00
Frederik Rietdijk fa45088ae9 python bsddb3: move and update expression
The updated expression uses buildPythonPackage and thus installs a
wheel. Unfortunately, setting the --berkeley-db flag seems to fail.
2015-12-11 10:41:37 +01:00
Frederik Rietdijk 66f663e192 castle_combat: remove game
It was broken already (pygame sound error), and also requires numeric
which is being removed.
2015-12-11 10:41:37 +01:00
Frederik Rietdijk aa4777c45b python: remove psyco 2015-12-11 10:41:29 +01:00
Frederik Rietdijk 7a8671a905 python foursuite: move callPackage to python-packages.nix 2015-12-11 10:36:29 +01:00
Frederik Rietdijk 0b83f71486 python ecdsa: remove duplicate
ecdsa was specified in python-modules/ and in python-packages.nix.
2015-12-11 10:36:29 +01:00
Frederik Rietdijk 39b8e3808d python numeric: remove package
numeric was superseded by numpy about 10 years ago. I think we can
remove it...
2015-12-11 10:36:29 +01:00
Birger J. Nordølum 1fe89386fd i3blocks: 1.4 (NEW) (WIP) 2015-12-11 08:55:14 +01:00
vbgl 251479f892 Merge pull request #11113 from lancelotsix/update_gsl
gsl: 1.16 -> 2.1
2015-12-11 02:05:56 +01:00
Thomas Tuegel 114584aca8 Merge branch 'pinentry-qt5' 2015-12-10 11:12:21 -06:00
Thomas Tuegel ca0514db49 pinentry_qt4: init at 0.9.6 2015-12-10 11:06:18 -06:00
Thomas Tuegel 31d68a68b5 pinentry_ncurses: init at 0.9.6 2015-12-10 11:06:10 -06:00
Thomas Tuegel 2b318da619 pinentry_qt5: init at 0.9.6 2015-12-10 11:06:00 -06:00
Robin Gloster 171d622fcd redir: init at 2.2.1 2015-12-10 16:09:32 +00:00
Vincent Laporte 76940c5e4c ocaml-why3: init at 0.86.2 2015-12-10 09:31:27 +01:00
Tobias Geerinckx-Rice 2ce24737c8 redshift: depend on geoclue2 directly 2015-12-10 02:38:42 +01:00
Nikolay Amiantov a5a481e7ee playonlinux: fix with new wxPython, fix OpenGL check 2015-12-09 23:29:24 +03:00
ts468 c8eaa71cae Merge pull request #11173 from mixis/updates/xen-4.5.2
xen: 4.5.1 -> 4.5.2
2015-12-09 21:17:17 +01:00
Christian Albrecht 0956820a55 font-droid: init at 2015-12-09 2015-12-09 18:01:05 +00:00
Lancelot SIX d39f9e8674 gsl: 1.16 -> 2.1
Release notes :
– gsl-2.0: https://savannah.gnu.org/forum/forum.php?forum_id=8392
— gsl-2.1: https://savannah.gnu.org/forum/forum.php?forum_id=8408

The bug-39055.patch is removed since it seems to be integrated in the
2.1 release.
2015-12-09 09:03:34 +00:00
Sou Bunnbu a190cb7636 Merge pull request #11432 from edanaher/fvwm-gestures
Fvwm: add gestures and create libstroke package
2015-12-09 16:25:51 +08:00
Ricardo M. Correia 2838161c21 krename: use older version of taglib
Fixes a build failure during the config phase.
2015-12-09 02:16:09 +01:00
Bjørn Forsman c27de52d39 eagle: 6.6.0 -> 7.5.0
* It grew a couple of extra (hard) dependencies:
  libxcb, cups, xkeyboardconfig
* It is also available in native 64-bit version (yay!)
2015-12-08 22:30:10 +01:00
Domen Kožar 4b0fcf8ea1 Merge pull request #11553 from FRidh/pil
WIP: remove PIL as dependency
2015-12-08 22:15:05 +01:00
Frederik Rietdijk 91adf1bb65 python: remove PIL
Remove it once and for all.
2015-12-08 16:30:57 +01:00
Frederik Rietdijk e1f2ddefd9 tpm thePenguinMachine: remove package
because source is unavailable
2015-12-08 16:30:24 +01:00
Yann Hodique e0fe879562 corkscrew: init at 2.0 2015-12-08 07:28:56 -08:00
Frederik Rietdijk 8d18e4c9f8 tpm thePenguinPachine: use pillow instead of pil
Was already broken, and still is.
2015-12-08 15:21:58 +01:00
Frederik Rietdijk 4bcfa14480 pdfread: use pillow instead of pil 2015-12-08 15:15:40 +01:00
Frederik Rietdijk 0c57716ab9 impressive: use pillow instead of pil 2015-12-08 15:12:17 +01:00
Frederik Rietdijk 60e2dced1a mirage: use pillow instead of pil 2015-12-08 15:11:00 +01:00
Peter Simons 8dd80d7055 Merge pull request #11531 from oxij/rtorrent-merge-and-cleanup
libtorrent, rtorrent: merge *-git into default, drop outdated *-git versions, cleanup
2015-12-07 19:01:52 +01:00
Jan Malakhovski 7afce99e61 libtorrent, rtorrent: merge *-git into default, drop outdated *-git versions, cleanup
This also gives the man page (it is outdated, though).
2015-12-07 17:56:03 +00:00
zimbatm 7c338ffb77 ruby_2_2: 2.2.2 -> 2.2.3 2015-12-07 15:37:33 +01:00
zimbatm d9f0568ccb ruby_2_1: 2.1.6 -> 2.1.7 2015-12-07 15:37:33 +01:00
Thomas Tuegel 916f86745e Merge branch 'elpa-packages' 2015-12-07 06:24:34 -06:00
Thomas Tuegel 4b950d233e ipe: 7.1.8 -> 7.1.10 2015-12-07 05:50:02 -06:00
lethalman 2fde83b5bd Merge pull request #11411 from hrdinka/mapnik
mapnik: init at 3.0.9
2015-12-07 10:50:39 +01:00
Tobias Geerinckx-Rice 47eb4d4430 Migrate manpages -> man-pages (upstream project name) 2015-12-06 23:44:13 +01:00
Tobias Geerinckx-Rice b3635acffb swingsane: init at 0.2 2015-12-06 23:44:13 +01:00
Rok Garbas 7ac0052ad5 nodejs: nodePackages_4_2 -> nodePackages_4_x 2015-12-06 21:58:45 +01:00
Rok Garbas c90d26a2e2 nodejs: fix naming of nodejs to fit into their versioning model, fixes #11497 2015-12-06 21:57:24 +01:00
Thomas Tuegel 026e3424a7 emacsPackagesNg: include elpaPackages 2015-12-06 13:17:41 -06:00
Arseniy Seroka 21332223ec Merge pull request #11451 from rvl/pump.io
Add Pump.io
2015-12-06 21:47:42 +03:00
Joachim Schiele a72ff7f4e7 Merge branch 'master' of github.com:NixOS/nixpkgs 2015-12-06 19:43:53 +01:00
Joachim Schiele bf0ed5e93a added kgocode 2015-12-06 19:43:25 +01:00
Thomas Tuegel 32c0069b79 add elpaPackages top-level attribute 2015-12-06 11:49:51 -06:00
Rodney Lorrimar 69b0661fa9 pump.io: init at git-2015-11-09
pump.io -- Social server with an ActivityStreams API

The version from git master branch is used because released version 0.3
is not compatible with newer versions of nodejs.

node-packages.json was extracted from pump.io package.json and augmented
with the databank-{lrucache,memcached,mongodb,redis} driver packages.

To regenerate, run:
    npm2nix pkgs/servers/web-apps/pump.io/node-packages.json pkgs/servers/web-apps/pump.io/node-packages.nix
2015-12-06 13:35:21 +00:00
Bjørn Forsman 1eaf571d42 pitivi: 0.94 -> 0.95
Notable (hard) dependency changes:
  - gstreamer >= 1.6.0
  - gst-plugins-bad with GTK support (need "gstgtk" plugin)
  - pygobject >= 3.14
  - gst-validate
  - matplotlib (used for drawing the "timeline")

Changes v1 -> v2:
pitivi no longer requires clutter, so I switched clutter-gtk => gtk3.
2015-12-06 10:24:59 +01:00
Ingolf Wagner 9c24bdff42 backup: init v4, fixes #11370 2015-12-05 23:21:03 +01:00
Gabriel Ebner 7cc6e6718c simp_le: init at 20151205, fixes #11479 2015-12-05 23:09:47 +01:00
Arseniy Seroka 1764a05710 Merge pull request #11473 from NeQuissimus/master
Add Kotlin
2015-12-06 00:30:19 +03:00
Tim Steinbach a356c3fa47 kotlin: init at 1.0.0-beta-3594 2015-12-05 21:23:22 +00:00
Bjørn Forsman 84bc6d64ba gstreamer: 1.4.x -> 1.6.x (all modules)
(And while at it, gst-vaapi 0.6.0 -> 0.6.1.)

* gst-editing-services grew additional build time dependencies, flex and
  perl.

* gst-libav switched from libav to ffmpeg as "libav" provider, see
  http://gstreamer.freedesktop.org/releases/1.6/.
  Without using ffmpeg, one may hit issues such as this (which I
  initially did):

  (gst-plugin-scanner:19751): GStreamer-WARNING **: Failed to load plugin '/nix/store/0wgpq2yx9wrkp2mh4rn1c7zbiq2bqa2l-gst-libav-1.6.1/lib/gstreamer-1.0/libgstlibav.so':
  /nix/store/0wgpq2yx9wrkp2mh4rn1c7zbiq2bqa2l-gst-libav-1.6.1/lib/gstreamer-1.0/libgstlibav.so: undefined symbol: av_frame_get_sample_rate
2015-12-05 21:52:33 +01:00
Peter Panaguiton 1b0edf40c3 cwm: init at 5.6, fixes #11458 2015-12-05 20:47:09 +01:00
Niclas Thall 5bd92c0197 ums: init at 5.3.1, fixes #11485 2015-12-05 20:30:43 +01:00
Jan Malakhovski 74724837d6 cmus: rewrite expression, add more options, fixes #11483 2015-12-05 20:18:13 +01:00
Pascal Wittmann 84b3af19b8 Merge pull request #11365 from nlewo/fix/git-review
git-review: init at 1.25.0
2015-12-05 16:32:12 +01:00
Vladimír Čunát 263fd55d4b Merge recent staging built on Hydra
http://hydra.nixos.org/eval/1231884
Only Darwin jobs seem to be queued now,
but we can't afford to wait for that single build slave.
2015-12-05 11:11:51 +01:00
Carles Pagès 5d9148c9ad kodiPlugins.pvr-hts: init at 2.1.18
Add Tvheadend HTSP PVR client addon for Kodi.
2015-12-05 08:42:45 +01:00
Nikolay Amiantov 95629cf6f8 bumblebee: cleanup, fix virtualgl, add useNvidia flag 2015-12-05 00:54:09 +03:00
Nikolay Amiantov 3b1ab88428 virtualgl: 2.3.2 -> 2.4.1, fix multilib 2015-12-05 00:54:09 +03:00
Nikolay Amiantov 56ffc2ecd2 primus: 1.0.0748176 -> 20151204, add useNvidia flag 2015-12-05 00:54:09 +03:00
Arseniy Seroka 87ba86b7da Merge pull request #11465 from oxij/xapian-omega-init
xapian-omega: init at 1.2.21
2015-12-05 00:11:09 +03:00
Arseniy Seroka a07cbec43c Merge pull request #11462 from oxij/mpd-client-support
mpd: set clientSupport to true by default
2015-12-04 23:57:06 +03:00
Jan Malakhovski 35cca051b2 xapian-omega: init at 1.2.21 2015-12-04 17:53:21 +00:00
Jan Malakhovski 8eb8478e62 mpd: set clientSupport to true by default
Standard "satellite" configuration from the docs will not work without this.
2015-12-04 17:46:15 +00:00
Christoph Hrdinka 2c54da93ef mapnik: init at 3.0.9 2015-12-04 18:03:16 +01:00
Moritz Ulrich e9e6d62c59 rofi-pass: 1.2 -> 1.3.1
Also contains fixes so it doesn't depend on anything in PATH.
2015-12-04 17:24:56 +01:00
Arseniy Seroka 0c05f14d53 Merge pull request #10535 from roblabla/feature-updateGitlab8.0.5
gitlab: 7.4.2 -> 8.0.5
2015-12-04 16:30:09 +03:00
Pascal Wittmann ea0f2d6c73 Merge pull request #11349 from dezgeg/pr-split-prefetch-scripts
nix-prefetch-scripts: Split into multiple derivations
2015-12-04 14:02:14 +01:00
Tuomas Tynkkynen c47910ae4e nix-prefetch-scripts: Split into multiple derivations
This makes it possible to e.g. only install nix-prefetch-git and not the
others.

Closes #7399.
2015-12-04 14:38:41 +02:00
Eelco Dolstra 2157dadebf perl-5.16: Remove 2015-12-04 12:19:45 +01:00
Eelco Dolstra d13dc12987 rsnapshot: 1.3.1 -> 1.4.1 2015-12-04 12:19:45 +01:00
Eelco Dolstra 9aa1cb6c59 pthread-man-pages: Remove
As far as I can tell, the man-pages package provides documentation for
every function provided by pthread-man-pages except
pthread_mutexattr_setkind_np, which no longer appears in the Glibc
headers. So let's ditch it.
2015-12-04 12:19:44 +01:00
Eelco Dolstra 7c00ae68d8 bfr: Build with current Perl 2015-12-04 12:19:44 +01:00
Dan Peebles 12de4d5cb3 ansible2: init 2015-12-03 21:54:45 -05:00
roblabla b7a4231aa2 gitlab: 7.4.2 -> 8.0.5 2015-12-04 01:14:24 +01:00
Nikolay Amiantov 00f6ce133c buildFHS{Chroot,User}Env: support extraInstallCommands 2015-12-04 00:58:47 +03:00
Nikolay Amiantov 634c9db4c2 Merge pull request #11431 from abbradar/teamviewer
teamviewer: init at 11.0.52520, remove older versions
2015-12-03 23:59:53 +03:00
Nikolay Amiantov c3d503d33d teamviewer: init at 11.0.52520, remove older versions 2015-12-03 22:28:36 +03:00
Burke Libbey 211c9ab28b Add coreutils-prefixed to install coreutils as gls, ggrep, etc.
Close #11421. Amended by vcunat not to cause a stdenv rebuild.
2015-12-03 20:08:37 +01:00
Vincent Laporte dc6b4e7fdd coq-flocq: 2.4.0 -> 2.5.0; coq-interval: 2.0.0 -> 2.1.0 2015-12-03 19:30:19 +01:00
Evan Danaher 474d64eecf libstroke: init at version 0.5.1 2015-12-03 00:30:17 -05:00
Augustin Borsu 16fd6c1cf0 owncloud: 7.0.5 -> 7.0.10 +
Commit changes default version to 7.0.10, 7.0.5 version is kept for
people reluctant to update. Needed info has also been added for
versions 8.0, 8.1 and 8.2 only the latest minor version of each
major version is included.
2015-12-02 20:36:40 +01:00
Domen Kožar 6cf4e29c4f Fix build for python3Packages.spyder
pylint (using Python 2.7) got propagated into python3Packages.spyder
so Python 2.7 setup-hook was used instead of python34.

Now that pylint is part of pythonPackages attribute set, pylint is
used with python3.4 as a base.
2015-12-02 19:07:46 +01:00
Pascal Wittmann 3272dbf65c Merge pull request #11381 from magnetophon/tudu-master
tudu: init at 0.10
2015-12-02 18:19:12 +01:00
Antoine Eiche e78fb0d59a git-review: init at 1.25.0
This provides a git command for submitting branches to Gerrit.
2015-12-02 12:36:01 +01:00
Arseniy Seroka 92f27b1a0a Merge pull request #11350 from magnetophon/dina-font-master
dina font: rename to dina-pcf, add vanilla version
2015-12-01 23:00:34 +03:00
Nikolay Amiantov c50d013d1f soundfont-fluid: init at 3 2015-12-01 20:46:31 +03:00
Bart Brouns 62dcb40fec tudu: init at 0.10 2015-12-01 11:52:28 +01:00
Pascal Wittmann 119e0a7bdb Merge pull request #11354 from mrVanDalo/aj-snapshot
aj-snapshot: init 0.9.6
2015-11-30 22:38:41 +01:00
Jude Taylor c20b6846f2 rustc: build on darwin 2015-11-30 12:54:04 -08:00
Arseniy Seroka 56dc9789aa Merge pull request #11340 from AndersonTorres/yabause
Yabause: init at 0.9.14
2015-11-30 22:55:22 +03:00
Frederik Rietdijk 104f98c12a fftw: add fftwLongDouble, disable SSE2 in that case 2015-11-30 17:18:57 +01:00
Ingolf Wagner 90f3c390f0 aj-snapshot: init (0.9.6) 2015-11-30 17:15:49 +01:00
Peter Simons 3a14c49fa0 Merge pull request #11352 from jb55/multi-ghc-travis-patch
multi-ghc-travis: init at git-2015-11-04
2015-11-30 14:01:50 +01:00
Domen Kožar 68dd644458 snabbswitch: 2015.10 -> 2015.11 2015-11-30 10:08:45 +01:00
William Casarin bc698428aa multi-ghc-travis: init at git-2015-11-04 2015-11-29 17:39:34 -08:00
Bart Brouns 73ab10af6f dina font: rename to dina-pcf, add vanilla version 2015-11-29 22:17:14 +01:00
Aristid Breitkreuz 780f6788b6 Merge pull request #11341 from benley/jsonnet-0.8.5
jsonnet: init at 0.8.5
2015-11-29 17:18:10 +01:00
lethalman 072aa5000f Merge pull request #11329 from ctheune/submit/pkg-syncthing-update-0.12.4
syncthing: 0.11 -> 0.12
2015-11-29 15:51:00 +01:00
Philip Potter 01eb385346 certificate-transparency: init at 2015-11-27
libevhtp: 1.2.10 -> 1.2.11

Package for certificate-transparency

This adds openssl support to libevent.  Libevent can be compiled without
openssl, in which case it just doesn't build the libevent_openssl
library.  However it seems simpler just to default to including openssl
support.

This bumps evhtp's version because 1.2.11 provides pkg-config
information which makes building certificate-transparency easier.

This has been tested with `doCheck = true;`.

Signed-off-by: Edward Tjörnhammar <ed@cflags.cc>
2015-11-29 15:01:22 +01:00
Benjamin Staffin 99b8c7cff0 jsonnet: init at 0.8.5 2015-11-29 04:13:00 -08:00
Vladimír Čunát 81b9cc6f54 html-tidy: unify with its drop-in replacement tidy-html5
- the original project has been unmaintained for years
- some dependants needed to be patched due to renamed headers
  https://github.com/htacg/tidy-html5/issues/326#issuecomment-160329114
- separate tidy-html5 package was removed, as since the 5.0.0 version
  it's meant as a successor to both, and library name got back
  from libtidy5.so to libtidy.so
  https://github.com/htacg/tidy-html5/issues/326#issuecomment-160314666

/cc committers to tidy-html5: @edwjto and @zimbatm.
2015-11-29 10:32:02 +01:00
AndersonTorres c7d8597976 Yabause: init at 0.9.14 2015-11-29 01:15:12 -02:00
Aristid Breitkreuz 903053e332 Merge pull request #11335 from markWot/radamsa
radamsa: init at 0.4
2015-11-29 00:24:43 +01:00
Aristid Breitkreuz 1742774df8 ispc: init at <GH master>
Intel SPMD Program Compiler

An open-source compiler for high-performance SIMD programming on the CPU

https://ispc.github.io/
2015-11-29 00:21:13 +01:00
Markus Wotringer cb58cf57d6 radamsa: init at 0.4 2015-11-28 23:51:17 +01:00
Christian Theune f6627a9402 syncthing: 0.11 -> 0.12
Also, keep 0.11 around (in an updated version) and make the
pkg an option to the service module.
2015-11-28 20:17:49 +01:00
Domen Kožar 1479f2cc3a Merge pull request #11286 from matthiasbeyer/add-weather
weather: init at 2.0
2015-11-28 19:27:17 +01:00
goibhniu 054402d479 Merge pull request #11096 from magnetophon/faust2-master
faust: add version 2 and make it the default
2015-11-28 14:37:04 +01:00
Rok Garbas 2de0dc1a18 statsd: updated package and nixos service
* package statsd node packages separatly since they actually require
  nodejs-0.10 or nodejs-0.12 to work (which is ... well old)

* remove statsd packages and its backends from "global" node-packages.json.
  i did not rebuild it since for some reason npm2nix command fails. next time
  somebody will rerun npm2nix statsd packages are going to be removed.

* statsd service: backends are now provided as strings and not anymore as
  packages.
2015-11-27 21:42:21 +01:00
Arseniy Seroka c6932509b8 Merge pull request #11302 from fkz/sad
add package: system for automated deduction
2015-11-27 22:25:44 +03:00
Shea Levy 0f90c9dbc1 idris-modules: documentation 2015-11-27 13:17:17 -05:00
Fabian Schmitthenner dc164dc2ee system for automated deduction: init at 2.3-25 2015-11-27 15:12:09 +00:00
Shea Levy 5898c20604 Add idrisPackages to all-packages.nix 2015-11-27 08:19:50 -05:00
Matthias Beyer a2c3c171e9 weather: init at 2.0 2015-11-27 11:47:51 +01:00
Matthias C. M. Troffaes b5e06b04a7 wolfssl: init at 3.7.0
Picked from #11287.
2015-11-27 11:00:40 +01:00
Tobias Geerinckx-Rice 3cc1f8dd15 hplip 3.15.9 -> 3.15.11
Keep 3.15.9 available as hplip{,WithPlugin}_3_15_9 in case this
breaks someone's printer/day job.
2015-11-27 01:45:53 +01:00
Domen Kožar 67e03d0c50 Merge branch 'buildPythonPackage+wheels' 2015-11-26 17:38:35 +01:00
Eric Sagnes 6ca51e3062 fcitx-qt5: init at 1.0.4 2015-11-26 16:12:25 +08:00
Eric Sagnes 6874221403 libchewing: init at 0.4.0 2015-11-26 16:12:25 +08:00
Jan Malakhovski caed1528a3 w3m: fix w3mimgdisplay, refactor the expression, make batch and nox versions, use batch version where appropriate 2015-11-26 00:34:09 +00:00
Shea Levy 8ea29441cf Merge remote-tracking branch 'origin/single-underscore' into staging
Use zero underscores for sandboxProfile
2015-11-25 13:01:34 -05:00
Arseniy Seroka 451858bd34 Merge pull request #11251 from spwhitt/nix-zsh-completions
nix-zsh-completions package and module support
2015-11-25 18:45:25 +03:00
Vladimír Čunát 7b88e7b51f all-packages: drop unnecessary `inherit (xorg) foo;`
/cc #11248.
2015-11-25 13:58:15 +01:00
lethalman 1c8aceab7e Merge pull request #11258 from cleverca22/multimc
multimc: init at 0.4.8
2015-11-25 12:14:47 +01:00
zimbatm ad2a4ab24c ruby: remove insecure 1.8.7, fixes #11194
1.8.x is unsupported and is probably insecure.

This also simplifies things a little bit
2015-11-25 12:10:03 +01:00
zimbatm e7cd9077a8 s3sync: delete dead project
According to http://s3sync.net/wiki.html, https://github.com/ms4720/s3sync was
supposed to take over the development but nothing has happened in 4 years.

The project is unfortunately dead and is our only dependency to ruby 1.8.
2015-11-25 11:51:09 +01:00
michael bishop 17020526a7 multimc: init at 0.4.8 2015-11-25 06:34:26 -04:00
Pascal Wittmann e16a6c0feb Merge pull request #11181 from ebzzry/emem-0.2.11
Emem 0.2.11
2015-11-25 11:18:02 +01:00
Domen Kožar d15d1a49be fix eval after #11248 2015-11-25 10:58:10 +01:00
Spencer Whitt 0b0e51ce6f nix-zsh-completions: init at 0.2 2015-11-24 18:50:02 -05:00
goibhniu e2fbd2d3dd Merge pull request #11060 from cillianderoiste/jraygauthier-jrg/pipelight_32_bit_support
pipelight: Add support for 32 bit linux via #9000
2015-11-24 23:15:40 +01:00
Rommel M. Martinez 065db3b799 emem: init at 0.2.11 2015-11-25 03:09:16 +08:00
zimbatm 144eed8bad libressl: split branches and add 2.3.1 (close #11196)
2.3.x introduces some backward-incompatible changes but is still nice to have.

Both 2.3.1 and 2.2.4 are available and 2.2.4 is still the default for now.
2015-11-24 18:10:53 +01:00
Michael Raskin d53213677d Merge pull request #11248 from joachifm/more-trivial-builderDefs
More trivial builderDefs translations
2015-11-24 17:15:45 +03:00
Nikolay Amiantov eff24b9cdf stepmania: 5.0.7 -> 5.0.10 2015-11-24 17:02:03 +03:00
Joachim Fasting a228252b69 cvc3: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 42fc03411f drgeo: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting ddb9c3b701 xaos: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 8aa63b34da qrdecode: reimplement using mkDerivation
Also mark as broken; I have verified that the build fails with
the original build recipe.
2015-11-24 14:45:15 +01:00
Joachim Fasting a1e397c4fb ode: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 502d21a835 xmpppy: reimplement using buildPythonPackage 2015-11-24 14:45:15 +01:00
Joachim Fasting 809b3803b9 pythonIRClib: reimplement using buildPythonPackage 2015-11-24 14:45:15 +01:00
Joachim Fasting b3144ea287 directvnc: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting f40e36d213 vncrec: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 2a752ac760 setserial: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting c844b6d041 metasploit: reimplement using mkDerivation
Also fixes download location. Bumps version to 3.3.1, which is
the closest to the original version for which a source archive
is still available.
2015-11-24 14:45:15 +01:00
Joachim Fasting 6857170916 gvpe: reimpleemnt using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 34fda4cbe2 cfdg: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 43a1582ef3 gphoto2fs: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 241515a6b7 xsokoban: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 8b3c02c14c bmrsa: reimplement using mkDerivation
Also set homepage & license (GPL according to the README,
no license is actually included in the source repo).
2015-11-24 14:45:15 +01:00
Joachim Fasting a799e1dff2 libx86: reimplement using mkDerivation 2015-11-24 14:45:15 +01:00
Joachim Fasting 6812c1eedc tftp-hpa: reimplement using mkDerivation
Also rename top-level name to tftp-hpa.
2015-11-24 14:45:15 +01:00
Rickard Nilsson 38196171e8 Merge pull request #10773 from rvl/longview
Linode Longview package and module
2015-11-24 13:16:30 +01:00
Charles Strahan b2409581f8 iosevka: init at 1.0-beta9
A slender monospace sans-serif and slab-serif typeface.
2015-11-23 19:52:52 -05:00
Jude Taylor 1a3689b87e fix an evaluation issue 2015-11-23 12:24:04 -08:00
Damien Cassou 250a165b80 pdf-tools: init at v0.70 2015-11-23 16:23:42 +01:00
Vladimír Čunát 13eca6f79a Merge #11067: SmartOS updates
I amended some commits slightly.
2015-11-23 14:45:44 +01:00
Thomas Tuegel 6d51f06fcf update {kf5,plasma5,kdeApps}_latest attributes 2015-11-23 06:39:09 -06:00
Thomas Tuegel 9ce51a1605 plasma55: init at 5.4.95 2015-11-23 06:39:08 -06:00
Thomas Tuegel ad04eda83a kdeApps_15_12: init at 15.11.80 2015-11-23 06:39:07 -06:00
Thomas Tuegel 526deb0043 kf516: init at 5.16 2015-11-23 06:39:04 -06:00
michael bishop 0421745924 rp-pppoe: 3.11 -> 3.12 2015-11-23 11:56:03 +00:00
Arseniy Seroka c89f058b4a Merge pull request #11191 from volhovM/fix/gradle-update
gradle: refactor
2015-11-22 22:40:49 +03:00
Rodney Lorrimar 96f81e3be5 longview: Linode metrics collector
Longview is a perl script used for sending server metrics to Linode
virtual private server hosting.
2015-11-22 12:37:00 +00:00
Pascal Wittmann 9877cfb600 phototonic: init at 1.7 2015-11-22 13:00:57 +01:00
Pascal Wittmann 5e0dca6d06 disorderfs: init at 0.4.1 2015-11-22 12:04:48 +01:00
Mikhail Volkhov bc05b570e6 gradle: refactor 2015-11-22 12:46:10 +03:00
Edward Tjörnhammar e33b26ce2f kodiPlugins.steam-launcher: init plugin at 3.1.1 2015-11-22 10:32:57 +01:00
Pascal Wittmann 5dfceebaba Merge pull request #11039 from Phlogistique/sonic-pi
sonic-pi: init at 2.8.0
2015-11-22 10:13:07 +01:00
Domen Kožar 704c8bab41 buildPythonPackage: fix standalone applications using it 2015-11-21 21:44:12 +01:00
Noé Rubinstein 01a81506a6 sonic-pi: init at 2.8.0 2015-11-21 20:41:30 +01:00
Pascal Wittmann 88cde6a73d sent: init at 0.1 2015-11-21 19:15:42 +01:00
Arseniy Seroka 6dff9dc93a Merge pull request #11161 from cstrahan/zkfuse
zkfuse: init
2015-11-21 19:49:38 +03:00
Shea Levy db995a95ee Merge remote-tracking branch 'origin/master' into staging 2015-11-21 07:46:55 -05:00
goibhniu c199019290 Merge pull request #11109 from ForNeVeR/pash
pash: init at git-2015-11-06
2015-11-21 10:44:00 +01:00
Jude Taylor 852988348d Merge branch 'staging' of https://github.com/NixOS/nixpkgs into sandbox-profiles 2015-11-20 19:58:46 -08:00