-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs
base: fd9cfc4db512
head repository: NixOS/nixpkgs
compare: 4b2735fd9fe2
Commits on May 17, 2018
-
nixpkgs module: Fix defaulting of
localSystem
andsystem
My c6f7d43 made the mistake of not having enough defaults. Now both variables are default as the *explicit* value of the other, or a fallback. The fallback of `system` is the default of `localSystem.system`. The fallback of `localSystem` is not the other default (projected), as that would cause a cycle, but `{ system = builtins.currentTime; }` just as nixpkgs itself does it.
Configuration menu - View commit details
-
Copy full SHA for 4fe2898 - Browse repository at this point
Copy the full SHA 4fe2898View commit details
Commits on May 26, 2018
-
grub2: compile grub-mount as well
It is a dependency of os-prober >= 1.75 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=860833#23
Configuration menu - View commit details
-
Copy full SHA for 3e09239 - Browse repository at this point
Copy the full SHA 3e09239View commit details -
os-prober: switch to a non-transient url
pool urls get removed after some time
Configuration menu - View commit details
-
Copy full SHA for b04f9b7 - Browse repository at this point
Copy the full SHA b04f9b7View commit details -
busybox seems to have never been needed systemd was meant to provide udevadm; use libudev instead devicemapper is now uneeded, replaced by grub-mount and grub-info dmraid does not appear in the current code
Configuration menu - View commit details
-
Copy full SHA for f8d08ec - Browse repository at this point
Copy the full SHA f8d08ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8ea160 - Browse repository at this point
Copy the full SHA b8ea160View commit details
Commits on May 27, 2018
-
Grigory Chereshnev committed
May 27, 2018 Configuration menu - View commit details
-
Copy full SHA for 3d9cd5d - Browse repository at this point
Copy the full SHA 3d9cd5dView commit details
Commits on May 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 0f51d1f - Browse repository at this point
Copy the full SHA 0f51d1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0102f5 - Browse repository at this point
Copy the full SHA b0102f5View commit details -
nixos/gitea: fix pre start script
The hooks directory contains now one level deep subdirectories which need to be updated as well. If you use gitea via ssh, ~/.ssh/authorized_keys also needs to be updated because of the hardcoded path to gitea in the "command" option.
Configuration menu - View commit details
-
Copy full SHA for 28c20a4 - Browse repository at this point
Copy the full SHA 28c20a4View commit details
Commits on May 30, 2018
-
vim_configurable: restore ability to override python for modules
It seems as Python will be fetched from $PATH in Vim 8.1: ``` stat("/home/ma27/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/run/wrappers/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/home/ma27/.nix-profile/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/nix/var/nix/profiles/default/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory) stat("/run/current-system/sw/bin/python", {st_mode=S_IFREG|0555, st_size=291, ...}) = 0 readlink("/run/current-system/sw/bin/python", "/nix/store/ggjkqbvwnv7dflkmdgmmp"..., 4096) = 72 ``` This breaks in cases where you want to use a modified Python derivation for the VIM plugins you use in `vim_configurable`: ``` let vim_configurable' = vim_configurable.override { # python with modules for ensime python = python.withPackages (ps: with ps; [ sexpdata websocket_client ]); }; in vim_configurable'.customize { # ... } ``` With VIM 8.0 this worked perfectly fine, now it's necessary to install the modified `python` in $PATH to actually use it, otherwise an error like this arises: ``` [ensime] A dependency is missing, please `pip2 install sexpdata websocket-client` and restart Vim. Press ENTER or type command to continue ``` However it should be possible to pass the modified Python to the modules, the easiest workaround is to write a wrapper which prefixes $PATH to have the Python derivation available.
Configuration menu - View commit details
-
Copy full SHA for f43446c - Browse repository at this point
Copy the full SHA f43446cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b4b65b2 - Browse repository at this point
Copy the full SHA b4b65b2View commit details -
librarian-puppet-go: update license
Issue closed and upstream notes it's under MIT.
Casey Ransom committedMay 30, 2018 Configuration menu - View commit details
-
Copy full SHA for 3088bdd - Browse repository at this point
Copy the full SHA 3088bddView commit details -
Configuration menu - View commit details
-
Copy full SHA for eee16f8 - Browse repository at this point
Copy the full SHA eee16f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0979373 - Browse repository at this point
Copy the full SHA 0979373View commit details -
Explain `toPythonApplication` and `toPythonModule` as well as some minor improvements.
2Configuration menu - View commit details
-
Copy full SHA for 39e9de1 - Browse repository at this point
Copy the full SHA 39e9de1View commit details -
2
Configuration menu - View commit details
-
Copy full SHA for a4867b3 - Browse repository at this point
Copy the full SHA a4867b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8ed1fc - Browse repository at this point
Copy the full SHA a8ed1fcView commit details -
Update the dependencies used for building consul-ui. therubyracer is no longer required and fails to build. Instead, a nodejs binary is required to build the assets. Patch out unnecessary executions of `bundle` which can cause failures.
Configuration menu - View commit details
-
Copy full SHA for 711f96e - Browse repository at this point
Copy the full SHA 711f96eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bced69 - Browse repository at this point
Copy the full SHA 6bced69View commit details -
Merge pull request #40920 from Ma27/vim-configurable-python-override
vim_configurable: restore ability to override python for modules
Configuration menu - View commit details
-
Copy full SHA for 3010d99 - Browse repository at this point
Copy the full SHA 3010d99View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f70642 - Browse repository at this point
Copy the full SHA 5f70642View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93555b0 - Browse repository at this point
Copy the full SHA 93555b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd213ee - Browse repository at this point
Copy the full SHA cd213eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for e62bf6d - Browse repository at this point
Copy the full SHA e62bf6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b503e76 - Browse repository at this point
Copy the full SHA b503e76View commit details -
Merge pull request #41150 from nonfreeblob/ivan-052-init
ivan: init at 052
Configuration menu - View commit details
-
Copy full SHA for eff23c0 - Browse repository at this point
Copy the full SHA eff23c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57bbe41 - Browse repository at this point
Copy the full SHA 57bbe41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4342d99 - Browse repository at this point
Copy the full SHA 4342d99View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2126df - Browse repository at this point
Copy the full SHA e2126dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 584006a - Browse repository at this point
Copy the full SHA 584006aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 72d7b5d - Browse repository at this point
Copy the full SHA 72d7b5dView commit details -
chromium: 66.0.3359.181 -> 67.0.3396.62
New stable version, with 34 security fixes and site isolation. See https://chromereleases.googleblog.com/2018/05/stable-channel-update-for-desktop_58.html
Configuration menu - View commit details
-
Copy full SHA for 7acec16 - Browse repository at this point
Copy the full SHA 7acec16View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88007f8 - Browse repository at this point
Copy the full SHA 88007f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for e481096 - Browse repository at this point
Copy the full SHA e481096View commit details -
Merge pull request #41281 from bobvanderlinden/patch-2
PR template: use sandbox instead of build-use-sandbox
Configuration menu - View commit details
-
Copy full SHA for 18d5e0d - Browse repository at this point
Copy the full SHA 18d5e0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 129dfed - Browse repository at this point
Copy the full SHA 129dfedView commit details -
gitAndTools.transcrypt: 1.0.3 -> 1.1.0 (#41231)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/transcrypt/versions. These checks were done: - built on NixOS - /nix/store/rnqjmp32pr8zq5y7bn9n0qcrnwg5qi82-transcrypt-1.1.0/bin/transcrypt passed the binary check. - /nix/store/rnqjmp32pr8zq5y7bn9n0qcrnwg5qi82-transcrypt-1.1.0/bin/.transcrypt-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 1 of 2 passed binary check by having the new version present in output. - found 1.1.0 with grep in /nix/store/rnqjmp32pr8zq5y7bn9n0qcrnwg5qi82-transcrypt-1.1.0 - directory tree listing: https://gist.github.com/74399ed2dc0f5e79c6face443cf11691 - du listing: https://gist.github.com/6c7f5baa546117396d7b51993bf84dba
Configuration menu - View commit details
-
Copy full SHA for a4e7324 - Browse repository at this point
Copy the full SHA a4e7324View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd7bfa6 - Browse repository at this point
Copy the full SHA cd7bfa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c16e62 - Browse repository at this point
Copy the full SHA 5c16e62View commit details -
strongswan: 5.6.2 -> 5.6.3 (#41237)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/strongswan/versions. These checks were done: - built on NixOS - /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3/bin/pki passed the binary check. - /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3/bin/charon-cmd passed the binary check. - Warning: no invocation of /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3/bin/charon-systemd had a zero exit code or showed the expected version - /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3/bin/ipsec passed the binary check. - /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3/bin/swanctl passed the binary check. - 4 of 5 passed binary check by having a zero exit code. - 1 of 5 passed binary check by having the new version present in output. - found 5.6.3 with grep in /nix/store/9qicaqwg2cvmahh3hqwig5bcqpd41k9a-strongswan-5.6.3 - directory tree listing: https://gist.github.com/258736889db4e822d054b65e7035147b - du listing: https://gist.github.com/478dbb4f44b4ed18b112076b17451a4e
Configuration menu - View commit details
-
Copy full SHA for 30c3a7f - Browse repository at this point
Copy the full SHA 30c3a7fView commit details -
libcouchbase: 2.8.7 -> 2.9.0 (#41113)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libcouchbase/versions. These checks were done: - built on NixOS - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-cat passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-create passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-observe passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-observe-seqno passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-incr passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-decr passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-mcflush passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-hash passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-lock passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-unlock passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-rm passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-stats passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-version passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-verbosity passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-view passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-n1ql passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-admin passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-ping passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-bucket-create passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-bucket-delete passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-bucket-flush passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-connstr passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-write-config passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-strerror passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-touch passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-role-list passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-user-list passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-user-upsert passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-user-delete passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-watch passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-pillowfight passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-n1qlback passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-subdoc passed the binary check. - /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0/bin/cbc-proxy passed the binary check. - 35 of 35 passed binary check by having a zero exit code. - 0 of 35 passed binary check by having the new version present in output. - found 2.9.0 with grep in /nix/store/zj8j91qlmkqy5bzhzgmmhjzynxxl5isd-libcouchbase-2.9.0 - directory tree listing: https://gist.github.com/615a7ba10ca91c94d08d74c5a200cef6 - du listing: https://gist.github.com/9991135c2e307e906da31f66df3aa79c
Configuration menu - View commit details
-
Copy full SHA for 4d2cd98 - Browse repository at this point
Copy the full SHA 4d2cd98View commit details -
povray: 3.7.0.7 -> 3.7.0.8 (#41269)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/povray/versions. These checks were done: - built on NixOS - /nix/store/hl6rn2fjd9h2g4vks7hrm3yv2f1zh3yc-povray-3.7.0.8/bin/povray passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 3.7.0.8 with grep in /nix/store/hl6rn2fjd9h2g4vks7hrm3yv2f1zh3yc-povray-3.7.0.8 - directory tree listing: https://gist.github.com/d35bed4b147aefbe2b8c6e42bdf56ccb - du listing: https://gist.github.com/75bee836a81741aa901a3677fb40aa16
Configuration menu - View commit details
-
Copy full SHA for ea3769e - Browse repository at this point
Copy the full SHA ea3769eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a3efa24 - Browse repository at this point
Copy the full SHA a3efa24View commit details -
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/khal/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/wkssgwwqyffwnf7c8p1zi180xjm256il-khal-0.9.9/bin/.ikhal-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/wkssgwwqyffwnf7c8p1zi180xjm256il-khal-0.9.9/bin/ikhal had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/wkssgwwqyffwnf7c8p1zi180xjm256il-khal-0.9.9/bin/.khal-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/wkssgwwqyffwnf7c8p1zi180xjm256il-khal-0.9.9/bin/khal had a zero exit code or showed the expected version - 0 of 4 passed binary check by having a zero exit code. - 0 of 4 passed binary check by having the new version present in output. - found 0.9.9 with grep in /nix/store/wkssgwwqyffwnf7c8p1zi180xjm256il-khal-0.9.9 - directory tree listing: https://gist.github.com/a146a88f248f45c280a17c50a0d46b79 - du listing: https://gist.github.com/72d0555178317dce9c07ab814f13f512
Configuration menu - View commit details
-
Copy full SHA for 21155d5 - Browse repository at this point
Copy the full SHA 21155d5View commit details -
Merge pull request #41265 from worldofpeace/fetchfromgitlab-domain
fetchFromGitlab: domain can be specified
Configuration menu - View commit details
-
Copy full SHA for 04bd841 - Browse repository at this point
Copy the full SHA 04bd841View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fc23d2 - Browse repository at this point
Copy the full SHA 4fc23d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for e055b76 - Browse repository at this point
Copy the full SHA e055b76View commit details -
Configuration menu - View commit details
-
Copy full SHA for 943d2fc - Browse repository at this point
Copy the full SHA 943d2fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4afe59c - Browse repository at this point
Copy the full SHA 4afe59cView commit details
Commits on May 31, 2018
-
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/iperf/versions. These checks were done: - built on NixOS - /nix/store/96cfq6l9jpw5jb2xfmyqsqvpx9khvaff-iperf-2.0.11/bin/iperf passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 2.0.11 with grep in /nix/store/96cfq6l9jpw5jb2xfmyqsqvpx9khvaff-iperf-2.0.11 - directory tree listing: https://gist.github.com/9e979b025f65af2cc7e8ffe313002b2f - du listing: https://gist.github.com/68cf597a93df8e798cb97551f8303fa4
R. RyanTM committedMay 31, 2018 Configuration menu - View commit details
-
Copy full SHA for 98463f7 - Browse repository at this point
Copy the full SHA 98463f7View commit details
There are no files selected for viewing