Commit Graph

20080 Commits

Author SHA1 Message Date
Frederik Rietdijk
25d537d06a python-packages: fix some licenses (close #11189) 2015-11-21 19:56:41 +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
Domen Kožar
fcf6fe5144 Merge pull request #11148 from FRidh/profiler
python memory_profiler: 0.27 -> 0.39
2015-11-21 11:44:33 +01:00
goibhniu
45ed727b1b Merge pull request #11044 from wedens/fzf_update
fzf: 0.10.8 -> 0.11.0
2015-11-21 10:49:07 +01: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
Pascal Wittmann
61f310cd4d pinpoint: 0.1.6 -> 0.1.8 2015-11-20 17:26:16 +01:00
Pascal Wittmann
35f32d0fda Merge pull request #10971 from ericbmerritt/trv-package
trv: init at 0.1.3
2015-11-20 14:26:24 +01:00
Arseniy Seroka
24207be444 Merge pull request #11163 from dochang/lnav
lnav: init at 0.8.0
2015-11-20 15:07:40 +03:00
Vladimír Čunát
3c397e8ec8 taglib: bring back 1.9 to fix kde4.kdemultimedia
/cc #11097.
2015-11-20 10:44:00 +01:00
Vladimír Čunát
48409bd3f4 mediastreamer: work around a build problem
The new deprecation was most likely triggered by ffmpeg update to 2.8.*
2015-11-20 09:11:13 +01:00
Domen Kožar
b13f454296 Merge pull request #11151 from FRidh/notebook
python notebook: use requests2 instead of requests
2015-11-20 08:33:17 +01:00
Desmond O. Chang
ac271677b9 lnav: init at 0.8.0 2015-11-20 15:03:20 +08:00
Charles Strahan
3b73b726d4 zkfuse: init 2015-11-19 19:55:44 -05:00
Friedrich von Never
1c3b6a2812 pash: init at git-2015-11-06 2015-11-19 23:00:56 +06:00
Frederik Rietdijk
5c9c00b2b9 python notebook: use requests2 instead of requests 2015-11-19 15:05:47 +01:00
Bob van der Linden
f65ebd022d darkhttpd: init at 1.11 2015-11-19 14:51:14 +01:00
Eelco Dolstra
aab90653af ceph: Don't use symlinks
No need to invent an ad-hoc symlink scheme when we can handle this
kind of indirection at the Nix expression level (e.g. by doing
"ceph-dev = ceph").
2015-11-19 14:25:16 +01:00
Eelco Dolstra
adde71ea6e ceph: Remove old and git versions 2015-11-19 14:25:16 +01:00
Eelco Dolstra
16acdb45bd Revert "kernel: Remove unsupported 3.10, 3.12, 3.14"
This reverts commit 2441e002e2. The
motivation for removing them was not very convincing. Also, we need
3.14 on some Hydra build machines.
2015-11-19 14:25:16 +01:00
Lluís Batlle i Rossell
9fc54f9aa5 Fixing the evaluation broken at 8a18bc8722
niksnut pointed this out in
8a18bc8722 (commitcomment-14498732)
2015-11-19 14:16:31 +01:00
Frederik Rietdijk
7bcd12f87e python memory_profiler: 0.27 -> 0.39 2015-11-19 13:54:46 +01:00
Peter Simons
684052af53 asymptote: switch to the new texlive implementation 2015-11-18 22:39:02 +01:00
Peter Simons
acf2ee7ed0 eukleides: switch to the new texlive implementation 2015-11-18 22:39:02 +01:00
Jaka Hudoklin
8f806d88bf Merge pull request #11057 from offlinehacker/pkgs/docker-gc/add
docker-gc: init at b0cc52aa3da2e2ac0080794e0be6e674b1f063fc
2015-11-18 22:28:18 +01:00
goibhniu
e9c31d9368 Merge pull request #11034 from zimbatm/webfs-1.21
webfs: init at 1.21
2015-11-18 19:19:28 +01:00
Lluís Batlle i Rossell
bec459a94e Updating freecad to 0.15
(cherry picked from commit 8a18bc8722)

Conflicts:
	pkgs/top-level/all-packages.nix
2015-11-18 17:21:01 +01:00
Pascal Wittmann
d1d5f9c9c1 Merge pull request #11121 from manveru/google-fonts
google-fonts: new package
2015-11-18 12:36:20 +01:00
Michael Fellinger
08c6a2cd92 google-fonts: init at 2015-11-18 2015-11-18 12:19:37 +01:00
Ricardo M. Correia
2b694c237b cargo, cargoSnapshot: add rustc runtime dependency
It turns out that cargo implicitly depends on rustc at runtime: even
`cargo help` will fail if rustc is not in the PATH.

This means that we need to wrap the cargo binary to add rustc to PATH.
However, I have opted into doing something slightly unusual: instead of
tying down a specific cargo to use a specific rustc (i.e., wrap cargo so
that "${rustc}/bin" is prefixed into PATH), instead I'm adding the rustc
used to build cargo as a fallback rust compiler (i.e., wrap cargo so
that "${rustc}/bin" is suffixed into PATH). This means that cargo will
prefer to use a rust compiler that is in the default path, but fallback
into the one used to build cargo only if there wasn't any rust compiler
in the default path.

The reason I'm doing this is that otherwise it could cause unexpected
effects. For example, if you had a build environment with the
rustcMaster and cargo derivations, you would expect cargo to use
rustcMaster to compile your project (since rustcMaster would be the only
compiler available in $PATH), but this wouldn't happen if we tied down
cargo to use the rustc that was used to compile it (because the default
cargo derivation gets compiled with the stable rust compiler).

That said, I have slightly modified makeRustPlatform so that a rust
platform will always use the rust compiler that was used to build cargo,
because this prevents mistakenly depending on two different versions of
the rust compiler (stable and unstable) in the same rust platform,
something which is usually undesirable.

Fixes #11053
2015-11-18 02:41:45 +01:00
Tobias Geerinckx-Rice
a5bad31da3 Merge pull request #11105 from nckx/add-gpart
gpart: init at 0.2.2
2015-11-17 23:38:03 +01:00
Tobias Geerinckx-Rice
7392ae1a3a gpart: init at 0.2.2 2015-11-17 23:09:04 +01:00
Domen Kožar
a7e8addf98 Merge pull request #11103 from samuelrivas/add-mixpanel
mixpanel: init at 4.0.2
2015-11-17 22:30:33 +01:00
Samuel Rivas
f1f7a438d1 mixpanel: init at 4.0.2 2015-11-17 22:19:54 +01:00
Pascal Wittmann
7fd2796e99 Replace 'with plaforms; platform' with 'platforms.platform' 2015-11-17 21:30:43 +01:00
Bart Brouns
ac3608211e add Helm, a polyphonic synthesizer, standalone or lv2 2015-11-17 18:24:39 +01:00
Jaka Hudoklin
5bbb869297 Merge pull request #11090 from matejc/brackets
brackets: new package, code editor
2015-11-17 17:24:40 +01:00
Jaka Hudoklin
be067811ff Merge pull request #11048 from offlinehacker/pkgs/influxdb/update_0.9.4
influxdb: 0.8.3 -> 0.9.4, fix module
2015-11-17 17:18:24 +01:00
Jaka Hudoklin
7955be7a82 Merge pull request #11051 from offlinehacker/pkgs/bosun/update_0.5.0
bosun: 0.3.0 -> 0.5.0-alpha, udpate module
2015-11-17 17:17:44 +01:00
Jaka Hudoklin
0667fe29c9 Merge pull request #11061 from offlinehacker/nixos/heapster/add
heapster module: init
2015-11-17 17:17:01 +01:00
Jaka Hudoklin
69a1b3977b Merge pull request #11055 from offlinehacker/pkgs/grafana/update_2.5.0
grafana: 2.0.0-beta1 -> 2.5.0
2015-11-17 17:14:23 +01:00
Matej Cotman
3454f8d371 brackets: new package, code editor 2015-11-17 14:50:17 +01:00
Domen Kožar
7e58284b68 Merge pull request #11087 from FRidh/llvmlite
python llvmlite: fix by using llvm_36
2015-11-17 13:48:56 +01:00
Luca Bruno
aa9827a948 ipython: use requests2 to fix python3 build 2015-11-17 13:02:03 +01:00
Matej Cotman
5f5fd03a71 nixui: upgrade to 0.2.1 2015-11-17 12:28:22 +01:00
Frederik Rietdijk
0d1a8a5fcf python llvmlite: fix by using llvm_36 2015-11-17 12:16:11 +01:00
Cillian de Róiste
242914358e datadog: fix license 2015-11-17 12:09:56 +01:00
Peter Simons
6fbff60f0e Add LTS Haskell 3.14. 2015-11-17 11:13:20 +01:00
Domen Kožar
a7c2ee2205 Merge pull request #11062 from offlinehacker/pkgs/pythonPackages/datadog/add
pythonPackages.datadog: init at 0.10.0
2015-11-17 10:45:03 +01:00
Pascal Wittmann
31f925b572 Merge pull request #11077 from rycee/bump/perl-Log-Log4perl
perl-Log-Log4perl: 1.43 -> 1.46
2015-11-17 10:26:13 +01:00