Commit graph

262178 commits

Author SHA1 Message Date
Bjørn Forsman 72d906a0ea nixos: fix "nixos-rebuild build-vm-with-bootloader" for EFI systems
(The first version of this change, in commit 39fad297fd, broke
`nix-build -A nixosTests.installer.simpleUefiSystemdBoot`. This is the
2nd version, which hopefully does not break anything.)

`nixos-rebuild build-vm-with-bootloader` currently fails with the
default NixOS EFI configuration:

  $ cat >configuration.nix <<EOF
  {
    fileSystems."/".device = "/dev/sda1";
    boot.loader.systemd-boot.enable = true;
    boot.loader.efi.canTouchEfiVariables = true;
  }
  EOF

  $ nixos-rebuild build-vm-with-bootloader -I nixos-config=$PWD/configuration.nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixos-20.09.tar.gz
  [...]
  insmod: ERROR: could not insert module /nix/store/1ibmgfr13r8b6xyn4f0wj115819f359c-linux-5.4.83/lib/modules/5.4.83/kernel/fs/efivarfs/efivarfs.ko.xz: No such device
  mount: /sys/firmware/efi/efivars: mount point does not exist.
  [    1.908328] reboot: Power down
  builder for '/nix/store/dx2ycclyknvibrskwmii42sgyalagjxa-nixos-boot-disk.drv' failed with exit code 32
  [...]

Fix it by setting virtualisation.useEFIBoot = true when needed.

Before:
* release-20.03: successful build, unsuccessful run
* release-20.09 (and master): unsuccessful build

After:
* Successful build and run.

Fixes #107255
2021-01-08 19:36:10 +01:00
Mario Rodas 40842049e8
Merge pull request #108784 from 1000101/tsdb
postgresqlPackages.timescaledb: 1.7.4 -> 2.0.0
2021-01-08 12:48:51 -05:00
Sandro 85b2053a31
Merge pull request #108755 from rhoriguchi/vscode-extensions/bracket-pair-colorizer-2
vscode-extensions.bracket-pair-colorizer-2: init at 0.2.0
2021-01-08 18:41:07 +01:00
Linus Heckemann c7e546aea1
Merge pull request #108748 from 3noch/eac/fix-vtk-png-aarch64
vtk: use system png on aarch
2021-01-08 17:09:51 +01:00
Mario Rodas 422659123e
Merge pull request #108764 from xwvvvvwx/lieer-1.3
lieer: 1.2 -> 1.3
2021-01-08 11:09:05 -05:00
Mario Rodas 473f34534f
Merge pull request #108757 from oxzi/golangci-lint-v1.35.0
golangci-lint: 1.33.0 -> 1.35.0
2021-01-08 11:07:43 -05:00
Mario Rodas 3f45221a23
Merge pull request #108767 from madjar/bump-pijul
pijul: 1.0.0-alpha.24 -> 1.0.0-alpha.31
2021-01-08 11:07:16 -05:00
Michael Weiss 95dc08e972
Merge pull request #73277 from robashton/master
Initial stab at making X11 a configurable dependency of intel-media-drivers
2021-01-08 17:06:13 +01:00
Sandro 71e0289f37
Merge pull request #108715 from figsoda/master
vscode-extensions.jnoortheen.nix-ide: init at 0.1.7
2021-01-08 16:39:03 +01:00
Sandro 8459558130
Merge pull request #108736 from lukegb/factorio
factorio-experimental, factorio-headless-experimental: 1.1.7 -> 1.1.8
2021-01-08 16:38:21 +01:00
Sandro ff7731d6aa
Merge pull request #108735 from rhoriguchi/vscode-extensions/output-colorizer
vscode-extensions.ibm.output-colorizer: init at 0.1.2
2021-01-08 16:29:56 +01:00
Sandro 1171348ebe
Merge pull request #108734 from rhoriguchi/vscode-extensions/sort-lines
vscode-extensions.tyriar.sort-lines: init at 1.9.0
2021-01-08 16:29:39 +01:00
Sandro b9cee566c4
Merge pull request #108733 from rhoriguchi/vscode-extensions/auto-rename-tag 2021-01-08 16:29:16 +01:00
Elliot Cameron 26dedb8398
vtk: use system png
VTK doesn't seem produce png symbols on aarch64. We could probably
figure out how to fix that but we can also just tell it to use the
libpng we already have, which already works on aarch64.
2021-01-08 10:25:37 -05:00
Sandro 97acd4c9e4
Merge pull request #108732 from rhoriguchi/vscode-extensions/highlight-matching-tag
vscode-extensions.vincaslt.highlight-matching-tag: init at 0.10.0
2021-01-08 16:19:25 +01:00
Sandro e90b05bfd8
Merge pull request #108729 from sikmir/mtpaint
mtPaint: 3.49.12 → 3.50.01
2021-01-08 16:18:59 +01:00
Sandro a98302aa9b
Merge pull request #108728 from rhoriguchi/vscode-extensions/nixfmt-vscode
vscode-extensions.brettm12345.nixfmt-vscode: init at 0.0.1
2021-01-08 16:00:11 +01:00
Sandro 40bfa03257
Merge pull request #108722 from jlesquembre/vim-capslock
vimPlugins.vim-capslock: init at 2021-01-07
2021-01-08 15:59:47 +01:00
Tim Steinbach f621108dbc
oh-my-zsh: 2021-01-05 → 2021-01-07 2021-01-08 14:03:10 +00:00
Tim Steinbach 137859bc9d
awscli: 1.18.210 -> 1.18.211 2021-01-08 09:00:19 -05:00
Tim Steinbach 583bde3965
python3Packages.boto3: 1.16.50 -> 1.16.51 2021-01-08 08:59:33 -05:00
Tim Steinbach 63d40a90c9
python3Packages.botocore: 1.19.50 -> 1.19.51 2021-01-08 08:59:23 -05:00
Alyssa Ross 8694e7de25 nixos/getty: add services.getty.loginOptions
This corresponds to agetty's --login-options argument.

With this change, I can set

    services.getty.autologinUser = "qyliss";
    services.getty.loginOptions = "-- \\u";

and have my username prefilled, but with my password still
required (unlike the normal autologinUser behaviour).
2021-01-08 13:55:25 +00:00
Anderson Torres 306fe1c436
Merge pull request #108710 from 06kellyjac/starboard
starboard: 0.7.1 -> 0.8.0
2021-01-08 10:43:31 -03:00
Rob Ashton 0e061a8595
intel-media-driver: Fix runtime issues due to the libX11 dependency
X11 is an optional run-time and optional build-time dependency of iHD.
A patchelf is required to join these two worlds together, and a lot of
machines that'll run the intel-media-driver won't have X11 on them, so
make it optional.

Fix #73236.

Co-Authored-By: Michael Weiss <dev.primeos@gmail.com>
2021-01-08 14:41:31 +01:00
Daniël de Kok 464633d5f7
Merge pull request #108581 from roberth/dockerTools-don't-apologize
dockerTools: Don't apologize
2021-01-08 13:58:46 +01:00
Pavol Rusnak 922b041809
Merge pull request #108009 from nima2007/mcrypt1
mcrypt: patch to include stdlib.h instead of malloc.h to build on darwin
2021-01-08 13:19:29 +01:00
Michael Weiss f274df0cda
chromiumBeta: 88.0.4324.50 -> 88.0.4324.79 2021-01-08 12:48:31 +01:00
1000101 ff1d77d788 postgresqlPackages.timescaledb: 1.7.4-> 2.0.0 2021-01-08 12:46:44 +01:00
Georges Dubus 78620e28d6 pijul: 1.0.0-alpha.24 -> 1.0.0-alpha.31 2021-01-08 12:43:09 +01:00
Michael Weiss bdc86af5ec
Merge pull request #108752 from marsam/fix-gpgme-darwin
gpgme: fix build on darwin
2021-01-08 12:37:08 +01:00
David Terry add5d11375
lieer: 1.2 -> 1.3 2021-01-08 12:07:40 +01:00
Gabriel Ebner 5000e5707b
Merge pull request #108717 from Dyazz/libqalculate
libqalculate: 3.14.0 -> 3.16.0
2021-01-08 11:23:31 +01:00
Daniel Edgecumbe d347164e04 libcst: fix python 3.6 support
The 'dataclasses' module is a required dependency of libcst.
Python >= 3.7 include this module natively.
2021-01-08 11:21:38 +01:00
Alvar Penning 757889019b golangci-lint: 1.33.0 -> 1.35.0 2021-01-08 11:12:07 +01:00
Mario Rodas 0946f962f4 nimlsp: init at 0.2.6
Co-authored-by: nbonfils <nbonfils@users.noreply.github.com>
2021-01-08 11:04:25 +01:00
Sandro 2b1f8235b4
Merge pull request #108402 from ymatsiuk/add-appgate-sdp 2021-01-08 10:51:27 +01:00
Ryan Horiguchi 2839e588d8
vscode-extensions.bracket-pair-colorizer-2: init at 0.2.0 2021-01-08 10:50:13 +01:00
Jörg Thalheim d48c4a0013
Merge pull request #108742 from sheenobu/patch-1
tortoisehg: 5.2.1 -> 5.6
2021-01-08 09:37:11 +00:00
Sandro d0c5336653
Merge pull request #108671 from AndersonTorres/rootbar
rootbar: init at unstable-2020-11-13
2021-01-08 09:40:04 +01:00
Sandro aaee60c696
Merge pull request #108706 from ruuda/fcct090
fedora-coreos-config-transpiler: 0.8.0 -> 0.9.0
2021-01-08 09:39:37 +01:00
Sandro fe3190c206
Merge pull request #108695 from davidtwco/jirafeau-4.3.0
jirafeau: 4.1.1 -> 4.3.0
2021-01-08 09:39:00 +01:00
Sandro 0a2710f4ae
Merge pull request #108705 from fabaff/pydexcom 2021-01-08 09:38:47 +01:00
Ryan Horiguchi 623bc4704d
vscode-extensions.formulahendry.auto-rename-tag: 0.1.5 -> 0.1.6 2021-01-08 09:36:43 +01:00
Mario Rodas 5772fa648c
Merge pull request #108749 from zowoq/ytdl
youtube-dl: 2021.01.03 -> 2021.01.08
2021-01-08 03:21:13 -05:00
Dyazz 8cdefb6995 qalculate-gtk: 3.15.0 -> 3.16.0 2021-01-08 08:43:39 +01:00
Mario Rodas 4786388803
Merge pull request #108747 from marsam/fix-libfprint-build
libfprint: fix build
2021-01-08 02:41:30 -05:00
Vincent Laporte 7ff870779a ocamlPackages.csexp: use Dune 2 2021-01-08 08:35:00 +01:00
zowoq 752fce151b youtube-dl: 2021.01.03 -> 2021.01.08
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.08
2021-01-08 16:34:54 +10:00
Alyssa Ross ca90852324
Revert "ipfs-cluster: Remove go1.14 pinning."
Quoting <https://github.com/NixOS/nixpkgs/pull/107941#issuecomment-756527121>:

> If you're going to remove the 1.14 pin, you'll need to bump the
> version by a few commits, or it builds but doesn't actually work.

This reverts commit f7fc3bfd55.
2021-01-08 05:59:45 +00:00