Thomas Tuegel
bec5797290
syslinux: fix invalid use of substituteInPlace
...
substituteInPlace was invoked with multiple targets on the command line, which
is not supported.
2017-07-21 16:51:53 -05:00
Thomas Tuegel
9aa4f09008
qt4: unset LD
...
Commit 093cc00cdd
sets the `LD' environment
variable by default, interfering with the Makefile which uses gcc for linking.
2017-07-21 16:49:32 -05:00
Thomas Tuegel
fe800447c2
qemu: unset CPP
...
Commit 093cc00cdd
sets the environment variable
`CPP' by default, but this interferes with dependency calculation.
2017-07-21 16:49:24 -05:00
Thomas Tuegel
5265d551a9
grub2: unset CPP
...
Commit 093cc00cdd
sets the environment variable
`CPP' by default, but this intereferes with dependency calculation.
2017-07-21 16:49:17 -05:00
Thomas Tuegel
b21defaf51
zfs: fix invalid use of substituteInPlace
...
substituteInPlace was invoked with multiple targets on the command line, which
is not supported.
2017-07-21 15:47:37 -05:00
Thomas Tuegel
20321f66d7
x264: unset AS
...
Commit 093cc00cdd
sets the environment variable
`AS' to the binutils assembler, but x264 needs yasm.
2017-07-21 15:47:12 -05:00
Thomas Tuegel
631f6b3e11
systemd: unset RANLIB
...
Commit 093cc00cdd
sets the RANLIB environment
variable by default, causing `make' to invoke the wrong program.
2017-07-21 15:46:40 -05:00
Thomas Tuegel
15776462b2
libunistring: disable parallel building
...
Parallel building causes a test deadlock and has been disabled.
2017-07-21 15:46:38 -05:00
Thomas Tuegel
aa11af8bbe
systemd: fix broken source hash
2017-07-21 15:46:33 -05:00
Thomas Tuegel
4a0a066f67
newt: unset CPP
...
Commit 093cc00cdd
sets the CPP environment
variable by default, confusing the newt Makefile, which expects CPP=gcc for
computing dependencies.
2017-07-21 15:45:32 -05:00
Thomas Tuegel
c25199f697
fetchurl: remove unpaired call to `stopNest'
...
Fixes #27406 .
Commit 5d4efb2c81
added an assertion to `stopNest'
which requires it be correctly paired with `startNest'. `fetchurl' calls
`stopNest', but never calls `startNest'; the former calls are removed.
2017-07-21 15:45:29 -05:00
Thomas Tuegel
baad413416
ppp: fix invalid use of substituteInPlace
...
substituteInPlace was invoked with multiple targets on the command line, which
is not supported.
2017-07-21 15:45:24 -05:00
Thomas Tuegel
c1c314c36f
openssh: unset LD
...
Commit 093cc00cdd
, sets the LD environment
variable by default, but this confuses the openssh Makefile because `configure'
does not respect it.
2017-07-21 15:44:33 -05:00
Thomas Tuegel
7d010ab5f4
mdadm: unset STRIP
...
Commit 093cc00cdd
, sets the STRIP environment
variable by default, but this confuses the mdadm Makefile, which uses STRIP as a
flag to `install'.
2017-07-21 15:43:25 -05:00
Daniel Peebles
bd2e91e3a2
Merge pull request #27318 from copumpkin/darwin-high-sierra
...
Support High Sierra on Darwin
2017-07-18 17:06:06 -04:00
Thomas Tuegel
54520fce77
Merge pull request #27427 from ttuegel/bugfix/buildenv-propagated
...
buildenv: read propagated-user-env-packages line-by-line
2017-07-17 16:20:36 -05:00
Lancelot SIX
09d918d533
pythonPackages.django_raster: 0.4 -> 0.5
2017-07-17 14:23:48 +02:00
Lancelot SIX
9bb9d93ee7
pythonPackages.pyparsing: 2.1.10 -> 2.2.0
2017-07-17 14:23:48 +02:00
Lancelot SIX
f7179c0474
pythonPackages.celery: fix tests for python3.6
2017-07-17 14:23:48 +02:00
Lancelot SIX
a8dd4d8e53
pythonPackages.pillow: 3.4.2 -> 4.2.1
2017-07-17 14:23:47 +02:00
Lancelot SIX
1e06824b3b
pythonPackages.olefile: init at 0.44
2017-07-17 14:23:47 +02:00
Lancelot SIX
e0f988fc46
pythonPackages.kombu: fix tests for python3.6
2017-07-17 14:23:47 +02:00
Frederik Rietdijk
0c9667efa0
python.pkgs.dask: 0.14.3 -> 0.15.1
2017-07-17 13:54:04 +02:00
Frederik Rietdijk
ac3cae1191
python.pkgs.pandas: 0.20.2 -> 0.20.3
2017-07-17 13:54:03 +02:00
Frederik Rietdijk
c2df8a28ee
python.pkgs.scipy: 0.19.0 -> 0.19.1
2017-07-17 13:54:03 +02:00
Frederik Rietdijk
ca0f2d8ce7
python.pkgs.numpy: 1.12.1 -> 1.13.1
2017-07-17 13:54:03 +02:00
Frederik Rietdijk
3eceecb90d
Merge remote-tracking branch 'upstream/master' into HEAD
2017-07-17 13:52:01 +02:00
Nadrieril
8669fb1f96
tinc service: BindToAddress and ListenAddress are different options, they should not be mistaken
2017-07-17 13:07:49 +02:00
Frederik Rietdijk
d2aa638ee2
update-python-libraries script: don't forget to break when we actually find an update
2017-07-17 10:43:37 +02:00
Frederik Rietdijk
c0cf19608f
aspellWithDicts: create derivation with aspell and selected dictionaries
...
Currently, `aspell` checks the active profiles for dictionaries. While
this may be convenient, it does not work with `nix-shell` and it doesn't
allow any isolation.
This commit adds the possibility to use composition by creating a
derivation with `symlinkJoin` that contains all the chosen dictionaries,
and another derivation that wraps the executables linking to the dictionaries.
Nix example:
my_aspell = aspellWithDicts(ps: with ps; [ en nl ])
`nix-shell` example:
nix-shell -p 'aspellWithDicts(ps: with ps; [ en nl ])'
2017-07-17 10:17:20 +02:00
Frederik Rietdijk
8e98811f76
python36: 3.6.1 -> 3.6.2
2017-07-17 10:06:14 +02:00
Benno Fünfstück
1d78df2729
Merge pull request #27000 from Balletie/fix/pulseaudio-alsa-conf
...
pulseaudio: Resolve conflicting asound.conf of pulseaudio and alsa
2017-07-17 08:20:38 +02:00
Yann Hodique
3d505a1acd
lftp: 4.7.7 -> 4.8.0
2017-07-17 08:02:04 +02:00
Franz Pletz
c2e9f45df2
exiv2: 0.25 -> 0.26
2017-07-17 02:53:14 +02:00
Franz Pletz
77a0b04f91
darktable: 2.2.4 -> 2.2.5
2017-07-17 02:53:14 +02:00
Franz Pletz
7f0994c33d
zfsUnstable: 0.7.0-rc4 -> 0.7.0-rc5
2017-07-17 02:53:14 +02:00
Franz Pletz
e4eea75fa7
zfs: 0.6.5.10 -> 0.6.5.11
2017-07-17 02:53:14 +02:00
volth
870375e19d
all-hardware.nix: add VMware support. ( #27430 )
...
NixOS does not boot in VMware guest without these modules
2017-07-17 02:38:10 +02:00
Nadrieril
c226ee619a
tt-rss: 16.3 -> 17.4
2017-07-17 02:20:16 +02:00
Daiderd Jordan
f1cb9d0261
Merge pull request #27374 from mnacamura/r_pbdZMQ_darwin_fix
...
r-pbdZMQ: fix Darwin install
2017-07-16 23:49:03 +02:00
Jörg Thalheim
d3ee993a27
Merge pull request #27419 from elitak/armjdk
...
oraclejdk8: armv7l support
2017-07-16 22:31:29 +01:00
Thomas Tuegel
dce958ac39
buildenv: read propagated-user-env-packages line-by-line
...
Since 3cb745d5a6
, the format of
propagated-user-env-packages has changed and propagated packages have not been
included by buildenv, including in the system environment.
The buildenv builder is modified to read propagated-user-env-packages
line-by-line, instead of expecting all packages on one line.
2017-07-16 16:06:06 -05:00
Jörg Thalheim
b6f9047d01
Merge pull request #27418 from roconnor/tarsnap
...
tarsnap: 1.0.37 -> 1.0.38
2017-07-16 22:02:29 +01:00
Graham Christensen
7fcddfe388
Merge pull request #27025 from corngood/firefox-drm-fix
...
firefox: fix the drmSupport option
2017-07-16 16:57:08 -04:00
Graham Christensen
8df6d351c4
Merge pull request #26912 from knedlsepp/fix-autoResize
...
nixos: Force check the filesystem before resizing
2017-07-16 16:54:54 -04:00
Graham Christensen
653badee82
Merge pull request #26259 from bachp/mysql-datadir-changelog
...
Mysql datadir changelog
2017-07-16 16:51:17 -04:00
Graham Christensen
6504df6732
Merge pull request #25955 from matthewbauer/nixpkgs-manual-declarative-package-management
...
manual: add "declarative package management" section
2017-07-16 16:50:14 -04:00
Graham Christensen
3d176b7ff1
Merge pull request #25670 from Mic92/cups-hardening
...
cups: mount private /tmp
2017-07-16 16:41:33 -04:00
Graham Christensen
4a2f605398
Merge pull request #24720 from k0001/hun-es
...
hunspellDicts: add spanish dictionaries.
2017-07-16 16:36:14 -04:00
Graham Christensen
6b879ef36e
Merge pull request #23964 from benley/nixos-manual-launcher
...
nixos: nix snowflake logo for the nixos manual launcher
2017-07-16 16:28:30 -04:00