summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
| * | | | | | | ffmpeg_4, ffmpeg-full: 4.0.1 -> 4.0.2Cray Elliott2018-08-01
| | | | | | | |
| * | | | | | | tests/containers-imperative: Disable useSandboxaszlig2018-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 4f6df27aee0a3f620d65280c7b6644d5cce094ae, nix.useSandbox defaults to true which causes the Nix build within the containers-imperative test to fail while trying to hardlink files into the chroot: link("/nix/store/foo", "/nix/store/bar.drv.chroot/nix/store/foo") = -1 EPERM (Operation not permitted) The reason this happens is that the hosts store is mounted using 9p and an overlayfs is mounted on top, so even if we would disable the tmpfs for the upper directory the hardlink would still cross filesystem boundaries, which then fails with the above error code. I haven't yet seen any other test which fails in a similar way, which might be because building within VM tests is not very common and the installer tests build in a separate store, so they're not affected. Signed-off-by: aszlig <aszlig@nix.build> Issue: https://github.com/NixOS/nix/issues/2324 Cc: @aristidb, @edolstra, @chaoflow, @kampfschlaefer
| * | | | | | | mariadb: 10.2.16 -> 10.3.8Cray Elliott2018-08-01
| | | | | | | |
| * | | | | | | pypy: 5.10 -> 6.0Cray Elliott2018-08-01
| | | | | | | |
| * | | | | | | reposurgeon: 3.28 -> 3.44Cray Elliott2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | also switch from cython to pypy as cyreposurgeon was dropped upstream in favor of using pypy
| * | | | | | | monotone: fix build against pcre 8.42Cray Elliott2018-08-01
| | | | | | | |
| * | | | | | | Merge pull request #44332 from jerith666/restic-s3-defaultMatthew Bauer2018-08-01
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | restic: add missing default for s3CredentialsFile
| | * | | | | | | restic: add missing default for s3CredentialsFileMatt McHenry2018-08-01
| | | | | | | | |
| * | | | | | | | unixODBCDrivers.msodbcsql17: init at 17.2.0.1 (#44140)Spencer Janssen2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * unixODBCDrivers.msodbcsql17: init at 17.2.0.1 * unixODBCDrivers.msodbcsql17: use autoPatchelfHook * unixODBCDrivers.msodbcsql17: use getLib
| * | | | | | | | Merge pull request #43080 from mnacamura/cddaMatthew Bauer2018-08-01
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | cataclysm-dda{,-git}: move common attributes to common.nix
| | * | | | | | | | cataclysm-dda{,-git}: add mnacamura as maintainerMitsuhiro Nakamura2018-07-19
| | | | | | | | | |
| | * | | | | | | | cataclysm-dda{,-git}: move common attributes to common.nixMitsuhiro Nakamura2018-07-18
| | | | | | | | | |
| * | | | | | | | | Merge pull request #43604 from udono/update_tryton_4_8Matthew Bauer2018-08-01
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Minor upstream update Tryton 4 8
| | * | | | | | | | | trytond: 4.8.1 -> 4.8.2Udo Spallek2018-07-16
| | | | | | | | | | |
| | * | | | | | | | | tryton: 4.8.2 -> 4.8.3Udo Spallek2018-07-16
| | | | | | | | | | |
| * | | | | | | | | | coreutils: unix-onlyMoritz Angermann2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows is not supported & we currently define "all" to be "unix" + "windows".
| * | | | | | | | | | beets: Fix building plugins with Python 3aszlig2018-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the switch to using python3Packages in commit 72934aa94e322eb3d5be277d667466643f78e706, the plugins no longer build because they end up with a mix of Python 2 and Python 3 packages. The reason for this is that the Beets package itself uses callPackage to reference the plugins, however the overrides are not applied there and thus the plugins end up getting pythonPackages from the top-level which is Python 2 and beets with Python 3 dependencies. Unfortunately this is not the only reason for the builds to fail, because both plugins did not actually support Python 3. For the copyartifacts plugin, the fix is rather easy because we only need to advance to two more recent commits from upstream, which already contain fixes for Python 3. The alternatives plugin on the other hand is not maintained anymore, but there is a fork at https://github.com/wisp3rwind/beets-alternatives which has a bunch of fixes. In 2e4aded366914d625a2f31208e8ac8548cb43a7e I already backported one of these fixes to the version from https://github.com/geigerzaehler/beets-alternatives, but for Python 3 support it's a bit more complicated than just one little fix. So instead of adding another series of patches which replicate the code base of the fork and become a maintenance burden, I opted to directly switch to the fork and remove the patch on our side. Signed-off-by: aszlig <aszlig@nix.build> Cc: @domenkozar, @pjones, @Profpatsch
| * | | | | | | | | | Merge pull request #44248 from LnL7/doc-darwin-installcheckJörg Thalheim2018-08-01
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | doc: add darwin installCheckTarget example
| | * | | | | | | | | | doc: add darwin installCheckTarget exampleDaiderd Jordan2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | pwndbg: 2018-04-06 -> 2018.07.29Jörg Thalheim2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | https://gitlab.gnome.org/GNOME/gnome-keyring/issues/1Jan Tojnar2018-08-02
| |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | gnome-builder: fix whitespaceJamey Sharp2018-08-01
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: add a long descriptionJamey Sharp2018-07-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Including a comment about the need for additional runtime dependencies.
| | * | | | | | | | | | | gnome-builder: document why tests and clang are disabledJamey Sharp2018-07-31
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: remove no-longer-used patchesJamey Sharp2018-07-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Whoops!
| | * | | | | | | | | | | gnome-builder: split devdoc to a separate outputJamey Sharp2018-07-31
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: use fetchpatch for upstream patchesJamey Sharp2018-07-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These patches were merged to master so we can fetch them from the GNOME GitLab instance now.
| | * | | | | | | | | | | gnome-builder: ensure gtkdoc can find docbook DTDsJamey Sharp2018-07-30
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: include developer docs in $outJamey Sharp2018-07-30
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: enable docs, fix typos.Jamey Sharp2018-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I also tried turning on the tests, but they don't work and I don't understand why not.
| | * | | | | | | | | | | gnome-builder: address review from @jtojnar/#44217Jamey Sharp2018-07-30
| | | | | | | | | | | | |
| | * | | | | | | | | | | gnome-builder: init at 3.28.4Jamey Sharp2018-07-30
| | | |_|_|_|/ / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | icestorm: 2018.05.03 -> 2018.08.01 (#44321)Serge Bazanski2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | xfce4-13.xfce4-whiskermenu-plugin: init at 2.2.0 (#44317)volth2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | xfce4-13.xfce4-cpufreq-plugin: init at 1.2.0 (#44316)volth2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | xfce4-13.xfce4-netload-plugin: init at 1.3.1 (#44315)volth2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | xfce4-13.xfce4-pulseaudio-plugin: init at 0.4.1 (#44314)volth2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | freeradius module: add to modules-list.nixFranz Pletz2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was somehow never added and was thus never available. It works.
| * | | | | | | | | | | freeradius: add rest module and multiple outputsFranz Pletz2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | proselint: 0.9.0 -> 0.10.0 (#44313)Will Dietz2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | somatic-sniper: init 1.0.5.0 (#43403)Justin Bedő2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | gitter: fix evalUli Baum2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gnome3.gconf was dropped
| * | | | | | | | | | | ocserv: init at 0.12.1 (#42871)Maximilian Bosch2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `ocserv` is a VPN server which follows the openconnect protocol (https://github.com/openconnect/protocol). The packaging is slightly inspired by the AUR version (https://aur.archlinux.org/packages/ocserv/). This patch initializes the package written in C, the man pages and a module for a simple systemd unit to run the VPN server. The package supports the following authentication methods for the server: * `plain` (mostly username/password) * `pam` The third method (`radius`) is currently not supported since `nixpkgs` misses a packaged client. The module can be used like this: ``` nix { services.ocserv = { enable = true; config = '' ... ''; }; } ``` The option `services.ocserv.config` is required on purpose to ensure that nobody just enables the service and experiences unexpected side-effects on the system. For a full reference, please refer to the man pages, the online docs or the example value. The docs recommend to simply use `nobody` as user, so no extra user has been added to the internal user list. Instead a configuration like this can be used: ``` run-as-user = nobody run-as-group = nogroup ``` /cc @tenten8401 Fixes #42594
| * | | | | | | | | | | confluent: init at 4.1.1-2.11 (#43137)Jaka Hudoklin2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | pybind11: init at 2.2.2 (#35027)Yuri Aisaka2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pybind11: init at 2.2.2 * fix license * remove test dependencies
| * | | | | | | | | | | gitter: init at 4.1.0 (#43505)Ivan Malison2018-08-01
| | | | | | | | | | | |
| * | | | | | | | | | | jq: disable strptime test on darwinDaiderd Jordan2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This seems to fail depending on the machine's configuration, probably something locale or timezone related.
| * | | | | | | | | | | Merge pull request #44310 from primeos/android-studio-improvementsMichael Weiss2018-08-01
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Android Studio improvements
| | * | | | | | | | | | | androidStudioPackages: Use recurseIntoAttrsMichael Weiss2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IMO it makes sense that the other channels show up in nix-env as well.
| | * | | | | | | | | | | android-studio-preview: Print a deprecation warningMichael Weiss2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hope this is ok... :)