3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

56246 commits

Author SHA1 Message Date
William A. Kennington III dae5b35463 ruby: Fixup libv8 versions 2015-07-08 15:10:50 -07:00
Arseniy Seroka 76229bc546 Merge pull request #8709 from telotortium/subsonic-maintainer
subsonic: add telotortium as maintainer
2015-07-09 00:54:19 +03:00
Arseniy Seroka ee5bea4f81 Merge pull request #8707 from rycee/package/fira-code
fira-code: init at 0.5
2015-07-09 00:53:21 +03:00
William A. Kennington III f92c174cce ruby: Correct version string 2015-07-08 14:24:42 -07:00
Arseniy Seroka df038c93cc Merge pull request #8667 from rehno-lindeque/nodejs-0.12.6
nodejs: 0.12.0 -> 0.12.6
2015-07-08 22:27:18 +03:00
Rehno Lindeque 590c467018 nodejs: 0.12.0 -> 0.12.6
0.12.5 and 0.12.6 were both critical security releases.
2015-07-08 20:51:03 +02:00
William A. Kennington III bd82a79fc1 xorriso: 1.3.8 -> 1.4.0 2015-07-08 11:28:54 -07:00
William Casarin 8ead9cf0c5 caffe: init at rev 77d66dfc
Initial version of the Caffe deep learning framework from Berkeley
2015-07-08 10:07:10 -07:00
Robert Irelan f9efcd47a1 subsonic: add telotortium as maintainer 2015-07-08 09:21:27 -07:00
Robert Helgesson 92c5355690 fira-code: init at 0.5 2015-07-08 17:39:49 +02:00
Tobias Geerinckx-Rice 1f23880449 geolite-legacy: 2015-06-15 -> 2015-07-08 2015-07-08 17:13:24 +02:00
Tobias Geerinckx-Rice 0b6e9f38ca python-packages: pgcli 0.17.0 -> 0.18.0
Changes: https://raw.githubusercontent.com/dbcli/pgcli/master/changelog.rst
2015-07-08 17:13:04 +02:00
Tobias Geerinckx-Rice 8ff60567ae shairport-sync: 2.3.0 -> 2.3.6.5
- Enable additional backends: pipe, stdout
- Support high-quality resampling with soxr
- Support configuration files, but don't install one
- Cut down on boilerplate code with fetchFromGitHub/autoreconfHook
2015-07-08 17:13:03 +02:00
Sander van der Burg e54d0371b9 disnix: bump to version 0.4 2015-07-08 12:03:56 +00:00
Shea Levy a5a8bad0e6 buildMaven: Handle authenticated repos 2015-07-08 06:25:07 -04:00
Shea Levy e987d1c1e3 requireFile: Make more flexible 2015-07-08 06:25:07 -04:00
Jaka Hudoklin 957390ecba Merge pull request #8682 from offlinehacker/pkgs/openshift/add
Add openshift
2015-07-08 12:20:01 +02:00
Jaka Hudoklin 4e33dd4e99 openshift: init at 1.0.1 2015-07-08 12:18:06 +02:00
Jaka Hudoklin 4b1cfd17a8 Merge pull request #8680 from offlinehacker/pkgs/compass/add
Add compass, stylesheet authoring environment
2015-07-08 12:17:19 +02:00
Arseniy Seroka 07cbf4d577 Merge pull request #8698 from lihop/vim-plugins
vimPlugins: change wombat256 source to github
2015-07-08 13:05:18 +03:00
Pascal Wittmann abf2642290 st: update from 0.5 to 0.6 2015-07-08 10:27:25 +02:00
Leroy Hopson 450c0da6d7 vimPlugins: change wombat256 source to github
See issue #8694. Previously wombat256 was downloading its source from
the vim website using fetchurl. The builder was failing when it tried to
unpack the .vim source file. Using the vim-scripts github repo avoids
this problem.
2015-07-08 19:01:26 +12:00
James Cook 783975bbb5 Merge pull request #8669 from ts468/upstream.ocaml_text
ocaml-text: 0.6 -> 0.7.1
2015-07-07 21:01:19 -07:00
Arseniy Seroka 54821893d6 Merge pull request #8692 from ts468/upstream.diffpdf
diffpdf: init at 2.1.3
2015-07-08 02:33:46 +03:00
Arseniy Seroka 1e631b51e0 Merge pull request #8693 from ts468/upstream.pdfdiff
pdfdiff: init at 0.92
2015-07-08 02:10:43 +03:00
Charles Strahan 75f53bc615 ruby: set the default to 2.2.2 2015-07-07 18:41:03 -04:00
Thomas Strobel 88d5f2c0a5 pdfdiff: init at 0.92 2015-07-08 00:22:57 +02:00
Arseniy Seroka f579662864 Merge pull request #8565 from oconnorr/master
cassandra-driver-2.6.0c2: new python package
2015-07-08 01:12:12 +03:00
Charles Strahan 357324df26 ruby: add 2.2.2, bump patch levels
* Adds Ruby 2.2.2
* 1.9.3-p547 -> 1.9.3-p551
* 2.0.0-p481 -> 2.0.0-p645
2015-07-07 17:45:33 -04:00
Charles Strahan 4ea88cc526 ruby: fix version 2.2.0 2015-07-07 17:43:49 -04:00
Thomas Strobel 528fae6dd3 diffpdf: init at 2.1.3 2015-07-07 23:32:54 +02:00
aszlig b028c14256
python-wrapper: Fix variable name for sed expr.
Regression introduced by 5f55788531.

The commit not only changes documentation, but also changed a few
variable names. One of them is $i which now is $f and it contains the
name of the file to wrap.

This was accidentally found by @Profpatsch (thanks!) who found himself
getting the basename of the last patch file to end up in sys.argv[0].
The reason for this is that $i is used in the for loop of the generic
patchPhase and thus is reused later when the Python file is to be
wrapped.

I have also added a small comment noting about this, to be sure that
this won't accidentally occur the next time someone changes variable
names.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-07 18:25:10 +02:00
Austin Seipp afb7655c68 nixpkgs: arcanist 20150525 -> 20150707
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-07-07 09:37:50 -05:00
Guillaume Massé 7bab5ee5d0 Following name convention for popcorntime
http://nixos.org/nixpkgs/manual/#sec-package-naming
2015-07-07 10:23:40 -04:00
Domen Kožar 2936e01bc8 Merge pull request #8677 from MasseGuillaume/master
Build popcorntime from ci until yts movie outage is fixed
2015-07-07 13:27:15 +01:00
Pascal Wittmann 3a1dc590f4 dwb: update from 2014-12-15 to 2015-07-07 2015-07-07 13:11:55 +02:00
Jaka Hudoklin acc995cf41 Add compass, stylesheet authoring environment 2015-07-07 12:11:58 +02:00
Simon Vandel Sillesen e85dac137e sundtek init at 30-06-2015 2015-07-07 10:58:58 +02:00
Edward Tjörnhammar 2dfe7d0513 i2pd: 0.9.0 -> 0.10.0 2015-07-07 09:47:22 +02:00
Thomas Strobel c465170662 ocaml-text: 0.6 -> 0.7.1 2015-07-07 09:39:53 +02:00
William A. Kennington III afd532f7cb cups: 2.0.2 -> 2.0.3 2015-07-07 00:30:25 -07:00
James Cook 0248632cdf Merge pull request #8671 from ts468/upstream.ocaml_ssl
ocaml-modules.ssl: make openssl propagatedBuildInput
2015-07-06 23:44:46 -07:00
Guillaume Massé 5562750cd0 Build popcorntime from ci until yts movie outage is fixed
Currently the movie tab is broken. It's fixed in the experimental branch (master)

http://status.popcorntime.io/
> * Update - Issue with the subtitles API affects Release 0.3.7-2, Experimental builds are fine
>   May 13, 22:54 EDT
> [...]
> * Identified - The issue with the YTS API (Movies) seems to be related to a bad response for one of the movies. The movies page will continue to be intermittent until the issue is resolved.
>   May 10, 21:29 EDT
> * Investigating - YTS (Movies) is currently unavailable for Popcorn Time release 0.3.7-2, but is still working for the experimental builds. We're looking into what the issue could be and why it's only affecting release 0.3.7-2
>   May 10, 18:34 EDT
2015-07-07 00:00:55 -04:00
William A. Kennington III 243b2f79ce openssh: 6.8p1 -> 6.9p1 2015-07-06 19:30:02 -07:00
William A. Kennington III 81ace52e89 openssh: Refactor and install sample config files 2015-07-06 19:29:45 -07:00
William A. Kennington III 3cfc6fa38a linux-firmware: 2015-05-13 -> 2015-06-30
Use iwlwifi/linux-firmware temporarily since the firmware for kernel
4.1+ is not mainlined in firmware/linux-firmware.
2015-07-06 18:31:13 -07:00
William A. Kennington III 06e146b2ce syslinux: Fix failed loading on gcc5 2015-07-06 17:49:07 -07:00
William A. Kennington III 9eae9dd811 gnupg: 2.0.27 -> 2.0.28 2015-07-06 17:14:01 -07:00
William A. Kennington III 2f28600f2b lvm2: 2.02.120 -> 2.02.124 2015-07-06 17:13:50 -07:00
William A. Kennington III 1d7990b0e1 consul-ui: Update dependencies 2015-07-06 16:42:16 -07:00