Commit Graph

18660 Commits

Author SHA1 Message Date
Benjamin Staffin
4c95e49593 prometheus-node-exporter: fold into go-packages.nix 2015-08-30 00:16:00 -07:00
Benjamin Staffin
6122488297 prometheus-nginx-exporter: fold into go-packages.nix 2015-08-30 00:12:09 -07:00
Benjamin Staffin
4f53847ca2 prometheus-mysqld-exporter: fold into go-packages.nix 2015-08-29 23:51:19 -07:00
Benjamin Staffin
52dd6ea9d9 prometheus-mesos-exporter: fold into go-packages.nix 2015-08-29 23:47:13 -07:00
Benjamin Staffin
9001ad4106 prometheus-haproxy-exporter: fold into go-packages.nix 2015-08-29 23:37:48 -07:00
Benjamin Staffin
c5b6f17e1c prometheus-collectd-exporter: fold into go-packages.nix 2015-08-29 23:30:27 -07:00
Benjamin Staffin
fe5a2b0a39 prom2json: fold into go-packages.nix 2015-08-29 23:19:48 -07:00
Benjamin Staffin
853602fae5 prometheus-cli: fold into go-packages.nix 2015-08-29 23:17:13 -07:00
Benjamin Staffin
87655d9fe8 prometheus-alertmanager: fold into go-packages.nix 2015-08-29 22:55:22 -07:00
Benjamin Staffin
d74e65bd6f prometheus: fold definition into go-packages.nix 2015-08-29 22:46:57 -07:00
William A. Kennington III
affead28cb goPackages: Update core packages from golang 2015-08-29 19:11:11 -07:00
William A. Kennington III
043839368e goPackages: Exclude commonly useless go packages from being built 2015-08-29 19:10:24 -07:00
Thomas Tuegel
fc0baf0ebe Merge pull request #9343 from akaWolf/qtcreator
qtcreator: refactor for using qt54; qt4SDK, qt5SDK: commented
2015-08-29 18:10:27 -05:00
Thomas Tuegel
7c3d65ec41 qt5Full: build from Qt 5.4 with qtEnv 2015-08-29 17:48:03 -05:00
Thomas Tuegel
b873f5bd62 Add qtEnv 2015-08-29 17:47:49 -05:00
Benjamin Staffin
04bb91bcce consul: revert to stable 0.5.2 rather than a snapshot
Follup to #9515: It appears that Prometheus doesn't actually require an
unreleased version of Consul.
2015-08-29 23:23:09 +02:00
Daniel Fox Franke
e69a162ced pythonPackages.gevent: works just fine on Darwin
Closes #8569, #7275, and #5782. Obviates #8730. As asserted by
@lethalman and observed by @aflatter and @ecyrb, this package
is currently building just fine on Darwin.
2015-08-29 23:10:11 +02:00
William A. Kennington III
26f9ea6dd5 goPackages: Fix tools 2015-08-29 13:25:00 -07:00
Bjørn Forsman
16b5d3f70b Fix eval
Fallout from 83cf8b0cf (goPackages: Split into multiple derivations).
2015-08-29 22:18:59 +02:00
Rok Garbas
07c4cbccf1 pythonPackages.pycdio: applied patch since driver_id can be also long type 2015-08-29 22:03:45 +02:00
William A. Kennington III
83cf8b0cf8 goPackages: Split into multiple derivations
This should reduce the closure size for end users who only need go
binaries as well as reduce the size of closures hydra builders consume.
2015-08-29 12:58:03 -07:00
Rok Garbas
0b4bcaad95 pythonPackages.gcutil: fix pinning of google_apputils version
also added some more metadata to the package
2015-08-29 21:39:35 +02:00
Rok Garbas
32dca6d3b2 pythonPackages.qscintilla: dont build on py3 and pypy
because qscintilla is not a standard python package ``buildPythonPackage`` is
not used and ``disabled`` does do anything.

diff --git a/pkgs/top-level/python-packages.nix
b/pkgs/top-level/python-packages.nix index 93d40c3..925ceb0 100644 ---
a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix
@@ -11823,35 +11823,36 @@ let }; };

-  qscintilla = pkgs.stdenv.mkDerivation rec {
-    # TODO: Qt5 support
-    name = "qscintilla-${version}";
-    version = pkgs.qscintilla.version;
-    disabled = isPy3k || isPyPy;
-
-    src = pkgs.qscintilla.src;
-
-    buildInputs = with pkgs; [ xorg.lndir qt4 pyqt4 python ];
-
-    preConfigure = ''
-      mkdir -p $out
-      lndir ${pkgs.pyqt4} $out
-      cd Python
-      ${python.executable} ./configure-old.py \
-          --destdir $out/lib/${python.libPrefix}/site-packages/PyQt4 \
-          --apidir $out/api/${python.libPrefix} \
-          -n ${pkgs.qscintilla}/include \
-          -o ${pkgs.qscintilla}/lib \
-          --sipdir $out/share/sip
-    '';
+  qscintilla = if isPy3k || isPyPy
+    then throw "qscintilla-${pkgs.qscintilla.version} not supported for interpreter ${python.executable}"
+    else pkgs.stdenv.mkDerivation rec {
+      # TODO: Qt5 support
+      name = "qscintilla-${version}";
+      version = pkgs.qscintilla.version;
+
+      src = pkgs.qscintilla.src;
+
+      buildInputs = with pkgs; [ xorg.lndir qt4 pyqt4 python ];
+
+      preConfigure = ''
+        mkdir -p $out
+        lndir ${pkgs.pyqt4} $out
+        cd Python
+        ${python.executable} ./configure-old.py \
+            --destdir $out/lib/${python.libPrefix}/site-packages/PyQt4 \
+            --apidir $out/api/${python.libPrefix} \
+            -n ${pkgs.qscintilla}/include \
+            -o ${pkgs.qscintilla}/lib \
+            --sipdir $out/share/sip
+      '';

-    meta = with stdenv.lib; {
-      description = "A Python binding to QScintilla, Qt based text editing control";
-      license = licenses.lgpl21Plus;
-      maintainers = [ "abcz2.uprola@gmail.com" ];
-      platforms = platforms.linux;
+      meta = with stdenv.lib; {
+        description = "A Python binding to QScintilla, Qt based text editing control";
+        license = licenses.lgpl21Plus;
+        maintainers = [ "abcz2.uprola@gmail.com" ];
+        platforms = platforms.linux;
+      };
     };
-  };

   qserve = buildPythonPackage rec {
2015-08-29 21:22:29 +02:00
William A. Kennington III
3afc3494bb goPackages: Use parallel instead of forking in bash 2015-08-29 11:51:26 -07:00
Jaka Hudoklin
ed63e18652 Merge pull request #9384 from jefdaj/bitcoinxt-twopackages
Add BitcoinXT as a separate package
2015-08-29 18:47:48 +02:00
Bjørn Forsman
ab6af31ecb spyder: enable for all python interpreters
Rope is not ported to python3 yet, so it is disabled (it's a
"recommended" dependency, not critical).
2015-08-29 17:41:35 +02:00
Peter Simons
69b648ea95 Revert "Added K Framework package."
This reverts commit de02110903. The package doesn't
compile: https://github.com/NixOS/nixpkgs/pull/7419#issuecomment-135972366.
2015-08-29 15:38:33 +02:00
Domen Kožar
806b679b6d Merge pull request #9515 from benley/prometheus-0.15.1
Prometheus: update to 0.15.1
2015-08-29 14:04:43 +02:00
Domen Kožar
d9cb4f92b5 pythonPackages.protobuf: disable on pypy
(cherry picked from commit 172d2793b9819eb6fa87f88806aaf6c7587e3a2c)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-29 13:17:33 +02:00
Frederik Rietdijk
12553227d2 python-packages dask: init at 0.7.0 2015-08-29 13:03:36 +02:00
Frederik Rietdijk
582c9a81dc python-packages dill: init at 0.2.4 2015-08-29 13:03:01 +02:00
Frederik Rietdijk
88d444b36f python-packages objgraph: init at 2.0.1 2015-08-29 13:02:44 +02:00
Frederik Rietdijk
d3bc5765dd python-packages xray: init at 0.6.0 2015-08-29 12:36:11 +02:00
Frederik Rietdijk
50aed1ee10 importlib: disable for Python>2.6 and PyPy
importlib is part of the standard library for Python > 2.6 and PyPy.

Tested with nix-shell for all *Packages.importlib versions.
2015-08-29 10:43:42 +02:00
Benjamin Staffin
49f9aba5dd goPackages: update various Prometheus dependencies
Improving style and adding dates along the dependency tree.
2015-08-29 00:19:16 -07:00
Tuomas Tynkkynen
6b866a37fc xrdb: Use mcpp as the preprocessor
Close #9501, fixes #9480.

By default, xrdb uses GCC as the preprocessor at runtime for X resource files.
However, gcc is a large dependency, so replace it with mcpp, a much smaller
preprocessor (currently under a megabyte on i686).

Arch Linux already does this as well, so this should be relatively safe:
https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/xorg-xrdb
2015-08-29 08:29:59 +02:00
William A. Kennington III
6d83b13734 ceph: 0.94.2 -> 0.94.3 2015-08-28 17:49:03 -07:00
William A. Kennington III
2d16959bb8 goPackages: gcloud-golang don't mark broken as this breaks anything depending on metadata 2015-08-28 16:29:48 -07:00
William A. Kennington III
c5e2beab9f Revert mongodb-tools: use Go 1.4
Unneeded as it works fine with Go 1.5 now
2015-08-28 15:44:50 -07:00
William A. Kennington III
43ea4b670c ipfs: Update 2015-08-28 15:43:35 -07:00
Domen Kožar
6dab6ed76b Merge pull request #9494 from FRidh/nibabel
nibabel: remove failing test
2015-08-28 19:20:26 +02:00
Domen Kožar
bd161d0dfc Merge pull request #9496 from FRidh/pyfribidi
pyfribidi: disable for pypy
2015-08-28 19:19:35 +02:00
Frederik Rietdijk
15aa28f71b pyfribidi: disable for pypy
Extension module. pypy is unsupported.
2015-08-28 16:51:07 +02:00
Arseniy Seroka
5ea112f4c3 Merge pull request #9465 from fazo96/ne
ne: init at 3.0.1
2015-08-28 17:43:12 +03:00
Frederik Rietdijk
2927f1a883 nibabel: remove failing test
One of the tests explicitly calls python, which will fail with python3.
The issue has been reported upstream,
https://github.com/nipy/nibabel/issues/341
For now, remove the test.

Fix also the license type.
2015-08-28 16:24:08 +02:00
Enrico Fasoli
0f041e5487 ne: init at 3.0.1
ne: building improvements
2015-08-28 14:24:03 +00:00
Luca Bruno
01a874b3cf gcloud-golang: mark as broken 2015-08-28 15:17:29 +02:00
Arseniy Seroka
4302291e3d Merge pull request #9483 from lebastr/qmidiroute
qmidiroute: init at 0.3.0
2015-08-28 11:49:38 +03:00
Frederik Rietdijk
6ec74dfdef gmpy/gmpy2 disable for PyPy
gmpy and gmpy2 are both extension modules that cannot be used with PyPy.
2015-08-28 09:28:31 +02:00
Arseniy Seroka
096515656d Merge pull request #9475 from dezgeg/pr-uboot-update
u-boot: 2015.04 -> 2015.07
2015-08-28 01:31:02 +03:00
Alexander Lebedev
e96ee79006 qmidiroute: init at 0.3.0 2015-08-27 19:00:08 +00:00
Eelco Dolstra
0ac4ad33fd Unify the docbook-xsl and docbook-xsl-ns expressions 2015-08-27 19:07:44 +02:00
Tuomas Tynkkynen
071009ee4f ubootJetsonTK1: Install some more files
tegra-uboot-flasher needs 'u-boot', 'u-boot-nodtb-tegra.bin' and
'u-boot.dtb' for its 'flash' subcommand, and 'u-boot-dtb-tegra.bin'
for its exec subcommand.

No, there's no sanity in the embedded world.
2015-08-27 17:14:46 +03:00
Domen Kožar
6fe7532396 Revert "vagrant: use ruby 2.2"
This reverts commit c00405d8d9bab331055f202f61ac117900454f36.
2015-08-27 13:41:37 +02:00
Domen Kožar
0392197226 fix python_fedora build
(cherry picked from commit 959ab2ebcc19c6f44f2ec6ddb79d16af7d69d4d3)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-27 12:52:37 +02:00
Domen Kožar
9855a8fcc0 mongodb-tools, drive, bosun, scollector: use Go 1.4 2015-08-27 11:33:37 +02:00
Domen Kožar
b65c5875e9 upgrade python-fedora, taskw
(cherry picked from commit 5384c08ea6d429bb25bef86a4730dd6e21bf5d65)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-27 11:16:36 +02:00
lethalman
144502c6e5 Merge pull request #9447 from dfoxfranke/reposurgeon
reposurgeon: init at 3.28
2015-08-27 10:52:58 +02:00
Domen Kožar
baf76b11a6 vagrant: use ruby 2.2
(cherry picked from commit c00405d8d9bab331055f202f61ac117900454f36)
Signed-off-by: Domen Kožar <domen@dev.si>
2015-08-27 10:52:00 +02:00
William A. Kennington III
27ab91161d mongo-tools: Update 2015-08-27 01:02:27 -07:00
William A. Kennington III
2c4186b045 Fix go-tools to include cover/vet for 1.4 but not 1.5 onward 2015-08-27 01:02:00 -07:00
Arseniy Seroka
d60d13eaa2 Merge pull request #9408 from zimbatm/fix/npm2nix
npm2nix: use the current node version
2015-08-27 02:05:08 +03:00
Cillian de Róiste
cef7bccbbf Add artha 1.0.3: an offline thesaurus 2015-08-27 00:50:50 +02:00
ts468
b1db014f40 Merge pull request #9462 from ts468/upstream.linphone
linphone: update linphone with dependencies
2015-08-26 22:33:56 +02:00
Thomas Strobel
e8aa031d69 mediastreamer-openh264: init at 1.0.0 2015-08-26 22:16:28 +02:00
Luca Bruno
f996e0b1f2 python box2d: use swig2 (ZHF) 2015-08-26 18:47:05 +02:00
Nikolay Amiantov
47ea8c097c buildFHSUserEnv: add .env support 2015-08-26 19:39:08 +03:00
Benno Fünfstück
0d6d5c907e cwiid: new package 2015-08-26 17:36:25 +02:00
Benno Fünfstück
a5e28d5319 freenect: add version 0.5.2 2015-08-26 17:35:32 +02:00
Bjørn Forsman
d61c46c1bd libqglviewer: rename attrname and pkgname from libQGLViewer
Ref. http://nixos.org/nixpkgs/manual/#sec-package-naming
2015-08-26 16:50:55 +02:00
vbgl
70f2952ca6 Merge pull request #8491 from vbgl/compcert-2.5
compcert: 2.4 -> 2.5
2015-08-26 16:16:58 +02:00
Domen Kožar
c2841a2221 docker: 1.7 -> 1.8.1, fix build (go 1.4) 2015-08-26 13:56:18 +02:00
lethalman
9458bde4c1 Merge pull request #9450 from lebastr/rosegarden
rosegarden: init at 14.12
2015-08-26 11:57:26 +02:00
Alexander
ee6140beaa rosegarden: init at 14.12 2015-08-26 09:35:05 +00:00
lethalman
c50b9fa038 Merge pull request #9227 from rehno-lindeque/fix/pgcli
pgcli: github owner changed from amjith to dbcli
2015-08-26 11:14:44 +02:00
lethalman
df7b56ae97 Merge pull request #9258 from FRidh/setuptools_scm
python-packages setuptools_scm: 1.5.4 -> 1.7.0
2015-08-26 10:56:27 +02:00
Edward Tjörnhammar
481807f926 pythonPackages.py: add meta. Closes #9257 2015-08-26 10:54:36 +02:00
lethalman
e2a260ef4b Merge pull request #9259 from FRidh/pexpect
python-packages pexpect: 2.3 -> 3.3
2015-08-26 10:49:45 +02:00
lethalman
a45a0911d4 Merge pull request #9376 from rick68/softether
softether: support SoftEther VPN 4.18
2015-08-26 10:45:46 +02:00
lethalman
434e3e2d7b Merge pull request #9444 from kevinmarsh/master
Update Django minor version numbers (to 1.8.4, 1.7.10, 1.4.22)
2015-08-26 10:34:20 +02:00
Daniel Fox Franke
686fec3ce7 reposurgeon: init at 3.28 2015-08-25 22:06:07 -04:00
Daniel Fox Franke
2194295fff cvs-fast-export: init at 1.32 2015-08-25 22:06:06 -04:00
Daniel Fox Franke
a04bd9301b hglib: init at 1.7 2015-08-25 21:58:24 -04:00
Daniel Fox Franke
617a158e3c libb2: init at 0.97 2015-08-25 14:25:05 -04:00
Arseniy Seroka
7795085c73 Merge pull request #9422 from kamilchm/glide05
glide: 0.4.1 -> 0.5.0
2015-08-25 20:37:25 +03:00
Kevin Marsh
358e915119 Update Django minor version numbers (to 1.8.4, 1.7.10, 1.4.22) 2015-08-25 16:56:32 +01:00
Domen Kožar
e4644a5b58 Merge branch 'staging' 2015-08-25 14:14:54 +02:00
Eelco Dolstra
60a0bb7f66 Make "nix-env -i wine" work again
Also, make wine32 the default again to prevent a huge closure size
regression. (It recently grew by ~1 GB:
http://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.wineStable.x86_64-linux#tabs-charts)

Issue #8990.
2015-08-25 13:07:16 +02:00
Kosyrev Serge
1770fe4443 wsmancli init at 2.6.0 2015-08-24 22:34:16 +03:00
Kosyrev Serge
d8b3c4c49c openwsman init at 2.6.0 2015-08-24 22:34:15 +03:00
Kosyrev Serge
90f40408c8 sblim-sfcc init at 2.2.9 2015-08-24 22:34:07 +03:00
Artjom Vejsel
9c206b6cf7 qtcreator: refactor for using qt54 2015-08-24 11:34:28 +03:00
Artjom Vejsel
e4410bfd85 qt4SDK/qt5SDK: delete (see #9342) 2015-08-24 09:27:14 +03:00
Ian Duncan
4bdcf1fa95 mongoc: init at 1.1.10
[Bjørn: Minor coding style cleanup.]
2015-08-24 07:25:18 +02:00
Ian Duncan
fd7144e455 libbson: init at 1.1.10
[Bjørn: Remove trailing dot in description and unneeded parenthesis
around mkDerivation arguments.]
2015-08-24 07:14:24 +02:00
Arseniy Seroka
ff25df9366 Merge pull request #9226 from rehno-lindeque/mycli-1.3.0
mycli: init at 1.3.0
2015-08-24 00:06:11 +03:00
Kamil Chmielewski
66cf9fd257 glide: 0.4.1 -> 0.5.0 2015-08-23 20:42:15 +02:00
Thomas Tuegel
90a72bd177 Merge branch 'master' into staging 2015-08-23 10:29:12 -05:00
Thomas Tuegel
04124c45a7 emacs-evil: 20141020 -> 1.2.3
Use the actual upstream source, not some random mirror.
2015-08-23 10:26:23 -05:00
zimbatm
23d155fb6f npm2nix: use the current node version 2015-08-23 15:03:10 +01:00
Phil Scott
3bbd79aaa6 scanmem: init at 0.15.2
[Bjørn: Remove trailing dot in description.]
2015-08-23 15:25:52 +02:00
Bjørn Forsman
2cf8502397 qtcreator: build with documentation
It was disabled due to a build error that is now fixed.
2015-08-23 09:56:09 +02:00
Bjørn Forsman
84c96cd4f6 qt5SDK: build with documentation
It was disabled due to a build error that is now fixed.
2015-08-23 09:56:09 +02:00
Rehno Lindeque
a3e688030e fix: mycli requires prompt_toolkit to be pegged at 0.45 2015-08-23 06:28:53 +00:00
Rehno Lindeque
0cf852b78b mycli: init at 1.3.0
mycli is a clone of the nearly identical pgcli package already included in nixpkgs.
2015-08-23 06:28:52 +00:00
Nikolay Amiantov
a4b9b5ce7d deluge: fix translations and desktop file 2015-08-22 23:17:19 +03:00
William A. Kennington III
64cd711f5c Merge branch 'master.upstream' into staging.upstream 2015-08-21 15:17:26 -07:00
Jude Taylor
92a2ee7deb go-1.4: set to default go compiler on darwin 2015-08-21 14:05:19 -07:00
Eelco Dolstra
2fc59dc2db Revert "ceptre: init at 2015-08-15"
This reverts commit 8871d16723. Missing
file breaks evaluation.
2015-08-21 16:48:37 +02:00
Tobias Geerinckx-Rice
5dd593dea5 prompt_toolkit: 0.46 -> 0.47 2015-08-21 13:42:52 +02:00
Eelco Dolstra
aba76f23a5 Revert "add Darwin's flavor of lsof"
This reverts commit 7024b4dc62. It
breaks evaluation (possibly related to earlier reverts):

http://hydra.nixos.org/build/24887643
2015-08-21 12:05:06 +02:00
Jeffrey David Johnson
17c0af24d2 add bitcoin-xt as a separate package 2015-08-20 23:57:10 -07:00
Pascal Wittmann
8871d16723 ceptre: init at 2015-08-15
A linear logic programming language for modeling generative interactive systems
2015-08-21 08:49:49 +02:00
Wei-Ming Yang
efd34824eb softether: support SoftEther VPN 4.18 2015-08-21 13:59:00 +08:00
Tobias Geerinckx-Rice
901dd019de prompt_toolkit: update 0.45 -> 0.46 2015-08-21 00:58:14 +02:00
William A. Kennington III
2138f789bc Merge branch 'master.upstream' into staging.upstream 2015-08-20 10:32:29 -07:00
Jaka Hudoklin
a9a41bc506 kubernetes: fix build 2015-08-20 16:18:51 +02:00
Arseniy Seroka
e8d96bdcf7 Merge pull request #9301 from ssgen/fatresize
Fatresize
2015-08-20 16:18:18 +03:00
Eelco Dolstra
fd38b5fa49 Revert gcc darwin fixes
This reverts commits cb7c053383,
ebda45e6b9,
4a495cfbab because they broke Nixpkgs
evaluation.

http://hydra.nixos.org/build/24813270
2015-08-20 11:49:55 +02:00
Bjørn Forsman
ac8f2391f3 pcl: 1.6.0 -> 1.7.2 (unbreaks build)
New deps added: libXt (required), libpcap (optional).

Releases are now at github.
2015-08-20 07:45:37 +02:00
William A. Kennington III
4f22eadf2c Merge branch 'master.upstream' into staging.upstream 2015-08-19 20:52:17 -07:00
William A. Kennington III
6f92c20795 go1.5: Use as the default 2015-08-19 20:52:09 -07:00
Tobias Geerinckx-Rice
46df28d371 packagekit: init at 1.0.7
Don't worry, this does absolutely nothing on Nix and only serves to
satisfy simple-scan's zany new dep.
2015-08-20 04:41:11 +02:00
Thomas Strobel
26ef514981 canon-cups-ufr2: init at 2.90 2015-08-20 01:22:10 +02:00
ssgen
62e2b2124a fatresize: init at 1.0.2 2015-08-20 00:43:34 +03:00
Domen Kožar
15bc70b1a4 Merge pull request #9350 from iand675/docker-compose
Upgrade to latest docker compose version
2015-08-19 23:41:45 +02:00
Luca Bruno
d05cb3e0ea go: add 1.5 compiler and packages 2015-08-19 23:25:16 +02:00
Jaka Hudoklin
24a626020a Merge pull request #8681 from offlinehacker/pkgs/driftnet/add
Add driftnet
2015-08-19 22:58:27 +02:00
William A. Kennington III
bf0da55a8c gotools: Fix build and update to 2015-08-19 2015-08-19 13:54:54 -07:00
William A. Kennington III
901482ad99 Merge branch 'master.upstream' into staging.upstream 2015-08-19 13:54:48 -07:00
William A. Kennington III
ef07bd04dc golang: Remove the last references to go-1.3 2015-08-19 13:53:11 -07:00
William A. Kennington III
c3592084cf golint: Update to 2015-06-23 2015-08-19 13:51:09 -07:00
William A. Kennington III
e27567cff1 golang: Remove old, unused compilers 2015-08-19 13:25:44 -07:00
Ian Duncan
8d9e45c89e Upgrade to latest docker compose version 2015-08-19 14:11:20 -04:00
Nikolay Amiantov
8f59f4c78c firefox: build with pulseaudio support (close #8087) 2015-08-19 20:08:54 +02:00
aszlig
50e9dd7da1
uclibc: Provide a more stable location for source.
At the upstream URL at http://git.uclibc.org/uClibc/snapshot/, older
versions are dropped at a regular basis. Unfortunately the tarball
"uClibc-20150131.tar.bz2" has already been deleted from that directory
and I didn't find a mirror providing the same file.

So I've switched it to use fetchzip from the cgit site instead of using
fetchgit directly. The reason why I didn't use fetchgit is that we'd
need need git, which depends (indirectly? not sure, haven't checked) on
libiconv and that in turn triggers an assertion if we're on Linux and
are cross-building using uclibc.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-08-19 18:43:24 +02:00
Arseniy Seroka
d8fc9ed20c Merge pull request #9337 from ragnard/rkt
rkt: init at 0.8.0
2015-08-19 14:57:13 +03:00
Arseniy Seroka
e197085b45 Merge pull request #9289 from jb55/antimicro-patch
antimicro: init at 2.18
2015-08-19 14:45:12 +03:00
Arseniy Seroka
fc7d47307e Merge pull request #9295 from kamilchm/glide
glide: init at 0.4.1, and dependencies:
2015-08-19 14:43:14 +03:00
Ragnar Dahlén
9d0efe846e rkt: init at 0.8.0 2015-08-19 12:40:36 +01:00
Bjørn Forsman
b69d119b89 cudatoolkit: switch the default from version 5 to 7
Version 5 doesn't build because it depends on broken/EOL'd python 2.6. Better
switch to something that works. Most users of unversioned cudatoolkit attr are
r-packages, but they are already marked as broken.

Another user is haskellPackages.cuda, it builds fine with cuda 7.
2015-08-19 10:22:44 +02:00
goibhniu
7d807f32d4 Merge pull request #9273 from joelmo/audio
Audio updates
2015-08-19 10:15:30 +02:00
William A. Kennington III
54dee45402 Revert "firefoxWrapper: switch to GStreamer 1.0"
This reverts commit 69269bebeb.
2015-08-19 00:39:16 -07:00
Bjørn Forsman
1357692555 blender: take unversioned cudatoolkit attr
Makes it less weird to do an override, if a user wants to use e.g. cuda
6.5 (also requires gcc 4.8).
2015-08-19 07:27:59 +02:00
William A. Kennington III
2ac70270e8 Merge branch 'master.upstream' into staging.upstream 2015-08-18 11:36:32 -07:00
goibhniu
d952b0ad4b Merge pull request #9241 from Twey/plover
Add Python package: OpenSteno Plover
2015-08-18 17:34:29 +02:00
Joel Moberg
bf5eece51d Make fetchFromGitHub return an additional attr rev
This means it is more consistent with fetchgit which returns rev.
2015-08-18 16:34:27 +02:00
Joel Moberg
e31e28602f rkrlv2: initial version at beta 2015-08-18 16:34:27 +02:00
Sophie Taylor
2e41646441 nixpkgs: llvm v3.5.0 -> v3.5.2 2015-08-18 02:18:04 -07:00
Tobias Geerinckx-Rice
765d1159e9 python-packages: click 5.0 -> 5.1 2015-08-18 03:38:23 +02:00
Cray Elliott
e99167d7f1 new package: mgba 0.3.0
This is a new Gameboy Advance emulator which aims to run on lower
end hardware without sacrificing accuracy or portability.
2015-08-17 18:00:33 -07:00
Thomas Tuegel
8f271a771d Merge pull request #9270 from Mathnerd314/supertux-editor
supertux-editor: init at git-2014-08-20
2015-08-17 17:13:44 -05:00
Thomas Tuegel
9b5242b625 Merge pull request #9223 from danshapero/metis-5.1.0
metis: init at 5.1.0
2015-08-17 16:51:01 -05:00
Tobias Geerinckx-Rice
7a854e3ed5 sound-theme-freedesktop: init at 0.8 2015-08-17 23:26:52 +02:00
Tobias Geerinckx-Rice
2ae4c0aa69 python-packages: click 4.1 -> 5.0 2015-08-17 23:26:52 +02:00
Nikolay Amiantov
42ea0d3341 Merge pull request #9233 from abbradar/elm
elm: add the platform and helpful scripts
2015-08-17 22:31:55 +03:00
William A. Kennington III
48f49a730e Merge pull request #9293 from kmicu/fix-firefox-switch-to-GStreamer-1.0
firefoxWrapper: switch to GStreamer 1.0

This definitely fixes the compatibility issues. @peti We should open an issue to figure out what is wrong with audio for that machine.
2015-08-17 11:34:18 -07:00
Nikolay Amiantov
89a2f87011 elm: add the platform and helpful scripts 2015-08-17 21:32:30 +03:00
Nikolay Amiantov
1a22ad6b18 deadbeef: add -with-plugins wrapper and a necessary patch 2015-08-17 21:05:52 +03:00
Nikolay Amiantov
4a12ff77cc deadbeef-mpris2-plugin: init at 1.8 2015-08-17 21:05:44 +03:00
Kamil Chmielewski
992247745e glide: init at 0.4.1, and dependencies:
cli-go: init at 1.2.0
cookoo: init at 1.2.0
go-gypsy: init at current master
2015-08-17 17:18:43 +02:00
Mathnerd314
4ff22bd680 supertux-editor: init at git-2014-08-20 2015-08-17 09:00:18 -06:00
kmicu
69269bebeb
firefoxWrapper: switch to GStreamer 1.0
wkennington@f6c1004 switched Firefox to GStreamer 1.0 by changing its
buildInput *only*, but that is not enough. We need to fix Firefox
wrappers by changing their buildInputs and set GST_PLUGIN_SYSTEM_PATH_1_0
instead of GST_PLUGIN_SYSTEM_PATH.

With above changes playing H.264/MP4 media works in firefoxWrapper and
conkerorWrapper as tested with
http://www.quirksmode.org/html5/tests/video.html and
https://soundcloud.com/immclovin33/synthetix-sundays-53-with-marko-maric-19715

It should help with peti#9247

Reviewed-by: kmicu <kmicu@protonmail.ch>
Tested-by: kmicu <kmicu@protonmail.ch>
2015-08-17 10:48:26 +02:00
vbgl
f2aeca7772 Merge pull request #9274 from mdorman/fix-python-cryptography
Update python-cryptography to 1.0.
2015-08-17 09:03:10 +02:00
William Casarin
aba6c9e9cb antimicro: init at 2.18
antimicro is a graphical program used to map keyboard keys and mouse controls
to a gamepad. Useful for playing PC games with no gamepad or poor gamepad
support.
2015-08-16 20:07:23 -07:00
Arseniy Seroka
1d35d31a2f Merge pull request #9268 from makefu/squashed-ovh
pythonPackages.ovh: init at 0.3.5
2015-08-16 23:50:17 +03:00
Michael Alan Dorman
ebe451017c python-SleekXMPP: fix source URL 2015-08-16 15:55:29 -04:00
Michael Alan Dorman
3ea4485446 python-pyopenssl: update propagatedBuildInputs. 2015-08-16 15:54:59 -04:00
Michael Alan Dorman
ef43cb270e python-cryptography: 0.6.1 -> 1.0
Update propagatedBuildInputs to get proper cffi version and shim
packages for older pythons.
2015-08-16 15:53:29 -04:00
Michael Alan Dorman
ff192b72cf python-cryptography_vectors: 0.6.1 -> 1.0
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:29 -04:00
Michael Alan Dorman
fcd5a4a2c3 python-pyasn1: 0.1.7 -> 0.1.8
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:28 -04:00
Michael Alan Dorman
b0d26719da python-idna init at 2.0
Needed for python-cryptography: 0.6.1 -> 1.0
2015-08-16 15:53:26 -04:00
Peter Simons
bc3b49ea6f Merge pull request #9279 from oxij/haskell-related-emacs
Somewhat trivial Haskell-, Agda-, and emacs-related fixes
2015-08-16 21:02:17 +02:00
Jan Malakhovski
7a73622116 emacs-packages: ghc-mod now requires haskell-mode 2015-08-16 18:00:56 +00:00
Jan Malakhovski
2f7a75f74a carefully revert e749f1ef61 and 8f1d256435 2015-08-16 18:00:54 +00:00
Felix Richter
6f77262e07 pythonPackages.ovh: init at 0.3.5
pythonPackages.d2to1: init at 0.2.11
\-> d2to1 is a build dependency of ovh
2015-08-16 16:07:40 +02:00
Arseniy Seroka
296f0d07c6 Merge pull request #9272 from AndersonTorres/xiphos
Xiphos
2015-08-16 16:39:07 +03:00
Bjørn Forsman
9f9f1db6e5 python-py: 1.4.24 -> 1.4.30
Unbreaks some packages because they require py>=1.4.29. Example build
error, from the 'argh' package:

  The 'py>=1.4.29' distribution was not found and is required by pytest

`nox-review wip` shows that there is a net reduction in build errors with
this patch.
2015-08-16 12:57:19 +02:00
AndersonTorres
0935ef2913 BibleSync: init at 1.1.2
Biblesync is a dependency of new Xiphos.
2015-08-15 22:36:44 -03:00
Pascal Wittmann
7dbc01792e Merge pull request #8768 from FRidh/blaze
blaze: init at 0.8.2
2015-08-15 12:01:17 +02:00
Frederik Rietdijk
3f20baee54 python-packages pexpect: 2.3 -> 3.3
Tests worked.
2015-08-15 11:42:32 +02:00
Frederik Rietdijk
85ec308f8b python-packages setuptools_scm: 1.5.4 -> 1.7.0 2015-08-15 11:40:20 +02:00
Frederik Rietdijk
f9e3908397 blaze: init at 0.8.2 2015-08-15 10:20:08 +02:00
Arseniy Seroka
8bdc291d8f Merge pull request #9253 from FRidh/pytest
python-packages pytest: 2.6.2 -> 2.7.2
2015-08-15 01:51:22 +03:00
Frederik Rietdijk
dd1d6f8e27 python-packages pytest: 2.6.2 -> 2.7.2 2015-08-14 23:16:50 +02:00
Pascal Wittmann
c73421b590 terminado: rename meta.licenses to meta.license 2015-08-14 22:40:07 +02:00
William A. Kennington III
a106080623 Merge branch 'master.upstream' into staging.upstream 2015-08-14 13:22:00 -07:00
Eric Seidel
324c0f205a emacs-packages: idris-mode 0.9.15 -> 0.9.18 2015-08-14 12:33:35 -07:00
Shea Levy
8d44a74cfe Add seaborn python package 2015-08-14 09:13:05 -04:00
Mabry Cervin
26cac935b5 gohufont: init at 2.0
Removed unecessary deps
2015-08-13 22:42:53 -04:00
Tobias Geerinckx-Rice
9a3a70ed2b rote: init at 0.2.8 2015-08-14 03:10:38 +02:00
Tobias Geerinckx-Rice
eb910bce5b perl-packages: Gtk2 1.2495 -> 1.2496
Upstream changes:
- Avoid registering a GType for GConnectFlags if not needed
- MANIFEST: added missing gtk-demo files
2015-08-14 03:07:10 +02:00
James ‘Twey’ Kay
326d179c67 Add Python package: plover-2.5.8 2015-08-14 00:57:56 +01:00
Arseniy Seroka
c0e03e4647 Merge pull request #9236 from Szczyp/rhc
rhc: init at 1.36.4
2015-08-14 01:32:24 +03:00
Jascha Geerds
0039622d64 pyatspi: init at 2.16.0 2015-08-13 23:52:06 +02:00
William A. Kennington III
952def0e3c Merge branch 'master.upstream' into staging.upstream 2015-08-13 11:55:02 -07:00
William A. Kennington III
257db17ee9 Revert "Revert "texinfo: 5.2 -> 6.0""
This reverts commit dc74a81129.

This doesn't actually break gcc.
2015-08-13 11:33:00 -07:00
Charles Strahan
c1ee8fefd4 nixos: add support for Ubuntu Fan Networking
This provides support for Ubuntu Fan Networking [1].

This includes:

* The fanctl package, and a corresponding NixOS service.
* iproute patches.
* kernel patches.

closes #9188

1: https://wiki.ubuntu.com/FanNetworking
2015-08-13 14:27:14 -04:00
Szczyp
cbe6badab9 rhc: init at 1.36.4
OpenShift client tools
Add szczyp as a maintainer
2015-08-13 18:02:55 +02:00
danshapero
8885889b48 metis: init at 5.1.0 2015-08-13 16:53:18 +02:00