Commit graph

184304 commits

Author SHA1 Message Date
Jan Tojnar 49e4859256
hspell: Fix meta check 2019-12-31 02:32:47 +01:00
Robin Gloster f6a3f5af36
treewide: structured-attrs fixes 2019-12-31 01:39:53 +01:00
Robin Gloster 6ca6ac796b
treewide: configureFlags is a flat list 2019-12-31 01:37:49 +01:00
Robin Gloster e9c27ed5f9
treewide: configureFlags is a flat list 2019-12-31 01:34:39 +01:00
Maximilian Bosch a534e750a8
lvm2: fix build 2019-12-31 01:32:18 +01:00
Maximilian Bosch 91a1f2043f
sudo: fix for structured attrs 2019-12-31 01:31:52 +01:00
Maximilian Bosch 15468f9a4b
ghc*: fix for structured attrs
configureFlags must be a flat list.
2019-12-31 01:31:19 +01:00
Maximilian Bosch 823b96a52b
rustc: fix for structured attrs 2019-12-31 01:29:57 +01:00
Maximilian Bosch b92fc0fba4
nfstrace: fix for structured attrs 2019-12-31 01:28:05 +01:00
Robin Gloster 4a8de55be0
ffmpeg: fix for structured attrs 2019-12-31 01:26:02 +01:00
Robin Gloster edfdd0f3e4
darwin: use dontUnpack instead of phases 2019-12-31 01:24:10 +01:00
Robin Gloster 006242fd5a
treewide: fix types for mkDerivation params 2019-12-31 01:23:19 +01:00
Maximilian Bosch 81ffabdf4f
treewide: use flat lists for *Inputs, fix env usage 2019-12-31 01:13:55 +01:00
Maximilian Bosch 839c0ea7a5
treewide: *Inputs are flat lists 2019-12-31 01:10:02 +01:00
Robin Gloster 760e23136a
treewide: *inputs are lists 2019-12-31 01:09:25 +01:00
Jan Tojnar 01e8c64988
flint: fix for structured attrs 2019-12-31 01:00:46 +01:00
Maximilian Bosch 5ed6a9c70d
firefox: fix for structured attrs 2019-12-31 00:59:00 +01:00
Robin Gloster 8a227a2341
treewide: fix nested lists in *buildInputs 2019-12-31 00:57:57 +01:00
Robin Gloster a012d5eebb
ldc: fix for structured attrs 2019-12-31 00:55:49 +01:00
Maximilian Bosch cbbba87b98
libgdiplus: fix for structured attrs 2019-12-31 00:54:08 +01:00
Robin Gloster bb2a6f7396
treewide: structured attrs fixes 2019-12-31 00:51:41 +01:00
Robin Gloster 9126911ba5
ruby: installFlags is a list 2019-12-31 00:50:40 +01:00
Robin Gloster 95526382be
polymake: fix for structured attrs 2019-12-31 00:49:42 +01:00
Robin Gloster 755db0b689
treewide: installTargets is a list 2019-12-31 00:25:26 +01:00
Robin Gloster ba0a3edf7f
stdenv: installTargets is a list 2019-12-31 00:24:02 +01:00
Robin Gloster 65712df184
treewide: installTargets is a list 2019-12-31 00:17:42 +01:00
Robin Gloster 313da176d3
treewide: NIX_*_FLAGS -> string 2019-12-31 00:16:46 +01:00
Robin Gloster f9f46dc327
treewide: NIX_*_FLAGS -> string 2019-12-31 00:15:46 +01:00
Robin Gloster 5f2b92e3ec
treewide: NIX_*_COMPILE -> string 2019-12-31 00:13:29 +01:00
Robin Gloster ab0cfd9e03
treewide: NIX_*_COMPILE -> string 2019-12-31 00:10:18 +01:00
Robin Gloster 981ae25113
treewide: NIX_*_COMPILE -> string 2019-12-31 00:07:21 +01:00
Robin Gloster e5ded57aab
treewide: NIX_CFLAGS_COMPILE -> string 2019-12-31 00:05:53 +01:00
Robin Gloster 4db0860814
cri-o: fix *Flags 2019-12-31 00:03:37 +01:00
Jan Tojnar 21280e418d
virtualbox: fix eval 2019-12-30 22:01:39 +01:00
Jan Tojnar 2093fa784a
libreoffice: fix eval 2019-12-30 20:53:00 +01:00
Frederik Rietdijk 99de1a8ebb pythonPackages.ipykernel: remove duplicate checkInputs 2019-12-30 18:17:34 +01:00
Frederik Rietdijk 164408fcd4 pythonPackages.tifffile: fix syntax error 2019-12-30 18:17:23 +01:00
Edmund Wu 226b6c7935 pythonPackages.sqlalchemy-utils: 0.35.0 -> 0.36.0 2019-12-30 18:12:51 +01:00
Jonathan Ringer fca4359376 nbstripout: fix build 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 296b2ab3c4 pythonPackages.Babel: remove glibcLocales and don't set LC_ALL
as we already set

    LANG = "${if python.stdenv.isDarwin then "en_US" else "C"}.UTF-8";

in `buildPythonPackage`.

This is related to issue https://github.com/NixOS/nixpkgs/issues/74904
2019-12-30 16:46:55 +01:00
Jan Tojnar f4e74edd8c python.pkgs.wrapPython: get rid of warning
When `makeWrapperArgs` variable is not set, `declare -p makeWrapperArgs`
will return with 1 and print an error message to stderr.

I did not handle the non-existence case in b0633406cb
because I thought `mk-python-derivation` will always define `makeWrapperArgs`
but `wrapProgram` can be called independently. And even with `mk-python-derivation`,
`makeWrappers` will not be set unless explicitly declared in the derivation
because of https://github.com/NixOS/nix/issues/1461.

I was lead to believe that because the builds were succeeding and I confirmed
that the mechanism fails when the variable is not defined and `-o nounset` is enabled.
It appears that `wrapPython` setup hook is not running under `-o nounset`, though,
invaldating the assumption.

Now we are checking that the variable exists before checking its type, which
will get rid of the warning and also prevent future error when `-o nounset`
is enabled in the setup hook.

For more information, see the discussion at
https://github.com/NixOS/nixpkgs/commit/a6bb2ede232940a96150da7207a3ecd15eb6328
2019-12-30 16:46:55 +01:00
Frederik Rietdijk dc84440055 pythonPackages.sphinx: remove sqlalchemy
Not a mandatory dependency so remove it.
2019-12-30 16:46:55 +01:00
Frederik Rietdijk 70fff17104 python: zha-quirks: 0.0.28 -> 0.0.30 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 85fcbaeb1e python: zeroconf: 0.24.2 -> 0.24.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 1c15acf9e5 python: xml2rfc: 2.37.2 -> 2.37.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 68db520555 python: uritemplate: 3.0.0 -> 3.0.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk d6306480be python: uncompyle6: 3.6.0 -> 3.6.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 1d729f8e5e python: typeguard: 2.7.0 -> 2.7.1 2019-12-30 16:46:55 +01:00
Frederik Rietdijk 0152b154c2 python: tox: 3.14.2 -> 3.14.3 2019-12-30 16:46:55 +01:00
Frederik Rietdijk c69f61d71a python: SPARQLWrapper: 1.8.4 -> 1.8.5 2019-12-30 16:46:55 +01:00