R. RyanTM
1af6da6ae3
gruvbox-dark-gtk: 1.0.1 -> 1.0.2
2021-04-26 00:47:41 +00:00
gfrascadorio
a54bc9b671
docker: fix systemd unit files ( #120019 )
...
* docker: fix systemd unit files
Add missing docker.socket file and patch ExecStart in docker.service
so these units are useful on non-nixos systems using systemd.
(issue #70407 )
* moved systemd units under: optionalString (stdenv.isLinux)
2021-04-26 02:43:09 +02:00
Keshav Kini
908c317cc3
python3Packages.cloudscraper: 1.2.56 -> 1.2.58
2021-04-25 17:36:16 -07:00
Sandro
1f0fb586c3
Merge pull request #120579 from jojosch/jellyfin-media-player-1.5.0
...
jellyfin-media-player: 1.4.1 -> 1.5.0
2021-04-26 02:29:11 +02:00
Sandro
33a3376b24
Merge pull request #120480 from ShamrockLee/libchewing
...
libchewing: 0.5.1 -> unstable-2020-06-27
2021-04-26 02:24:58 +02:00
ajs124
927ede4a9a
Merge pull request #120598 from beardhatcode/bump/language-tool
...
languagetool: 5.2 -> 5.3
2021-04-26 02:21:43 +02:00
Sandro
7d7fb31624
Merge pull request #120531 from teto/qhull-update
...
qhull: 2016.1 -> 2020.2
2021-04-26 02:18:06 +02:00
Aiken Cairncross
ff6eef6cf1
python3Packages.onnx: Patch out pytest-runner
2021-04-25 17:15:14 -07:00
Aiken Cairncross
789398cfa3
python3Packages.onnx: 1.8.1 -> 1.9.0
2021-04-25 17:15:14 -07:00
Samuel Dionne-Riel
6be41a3545
grub2: Add samueldr as maintainer
2021-04-25 20:07:35 -04:00
Michael Raskin
8931b66733
Merge pull request #120614 from eduardosm/mpfi
...
mpfi: fix download URL
2021-04-26 00:06:48 +00:00
Michael Raskin
dda86e6d7e
Merge pull request #120648 from collares/cypari-override
...
sage: remove cypari2 override
2021-04-26 00:06:17 +00:00
therealansh
f1df273a67
zellij: init at 0.5.1
2021-04-26 09:01:17 +09:00
therealansh
2164917479
maintiners: add therealansh
2021-04-26 09:01:17 +09:00
Morgan Jones
f2744c6b80
wsjtx: 2.2.2 -> 2.3.1
2021-04-25 18:01:10 -06:00
Samuel Dionne-Riel
7d112134de
nixosTests.installer: Fix grub1 test being unreliable
...
The kernel sometimes assigns `/dev/sdb` to the 8GiB disk. This, in turn,
means the test will fail because we're targeting the wrong disk.
```
machine # [ 0.000000] sd 2:0:0:0: [sda] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)
machine # [ 0.000000] sd 3:0:0:0: [sdb] 1048576 512-byte logical blocks: (537 MB/512 MiB)
```
```
machine # [ 0.000000] sd 2:0:0:0: [sdb] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)
machine # [ 0.000000] sd 3:0:0:0: [sda] 1048576 512-byte logical blocks: (537 MB/512 MiB)
```
Note how the "sd x:0:0:0:` ID is stable. That is because QEMU **is**
told to give specific identifiers to the disks. So using the
dev/disk/by-id/ identifiers is stable.
* * *
Tested by forcing the sda/sdb swap this way:
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 24c55081f9a..2eee224351b 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -702,12 +702,19 @@ in {
+ " mkpart primary linux-swap 1M 1024M"
+ " mkpart primary ext2 1024M -1s",
"udevadm settle",
+ )
+ print(machine.succeed("find /dev/disk/ '!' -type d -printf '%p → %l\n' | sort"))
+ machine.succeed(
"mkswap ${grubDevice}-part1 -L swap",
"swapon -L swap",
"mkfs.ext3 -L nixos ${grubDevice}-part2",
"mount LABEL=nixos /mnt",
"mkdir -p /mnt/tmp",
)
+ machine.succeed("echo success")
+ machine.succeed(
+ 'if [[ "$(find ${grubDevice} -printf \'%l\')" != "../../sdb" ]]; then exit 22; else true; fi'
+ )
'';
grubVersion = 1;
# /dev/sda is not stable, even when the SCSI disk number is.
And ran this way:
$ until (clear; tmux clear ; time env -i nix-build nixos/release-combined.nix -A nixos.tests.installer.grub1.x86_64-linux); do echo derp; done
2021-04-25 19:59:29 -04:00
Cole Helbling
bef6991899
python3.pkgs.cve-bin-tool: init at unstable-2021-04-15
2021-04-25 16:58:21 -07:00
Cole Helbling
1a5230e4a9
python3.pkgs.rpmfile: init at 1.0.8
2021-04-25 16:58:21 -07:00
R. RyanTM
fff4eecadd
fluxctl: 1.22.1 -> 1.22.2
2021-04-25 23:33:54 +00:00
Mario Rodas
ddea0864b6
Merge pull request #120553 from raboof/grpc-go-init-at-1.37.0
...
protoc-gen-go-grpc: init at 1.1.0
2021-04-25 18:15:14 -05:00
Martin Schwaighofer
f20ae954d5
make-disk-image: fix broken EFI image builds
...
Work around missing /dev files inside runInLinuxVM by creating a
symlink before calling nixos-enter.
This fixes https://github.com/NixOS/nixpkgs/issues/93381 .
I ran into this issue when trying to create a VMware image that boots from EFI.
Thanks @colemickens for reporting this and @danielfullmer for fixing the same thing in in qemu-vm.nix (37676e77cb5adab936606838d6465faafda54f61) and explaining what the issue was.
2021-04-26 01:12:10 +02:00
Alexandre Macabies
17f00cd216
nxdomain: 1.0.1 -> 1.0.2
2021-04-26 01:06:52 +02:00
zowoq
fbf8ee0a70
Revert "docutils: 0.16 -> 0.17.1"
...
This reverts commit 78459891186af7cc32b0257c7abed69b59340ed9.
Causes mass rebuild on master.
2021-04-26 08:59:39 +10:00
R. RyanTM
486825e7c8
flacon: 6.1.0 -> 7.0.1
2021-04-25 22:55:25 +00:00
R. RyanTM
0080a58690
vips: 8.10.5 -> 8.10.6
2021-04-26 00:37:49 +02:00
Ivar Scholten
249d9041be
imagelol: init at 0.2
2021-04-26 00:32:06 +02:00
Evils
e49b28b77c
btrfs-heatmap: 8 -> 9
2021-04-26 00:20:47 +02:00
Evils
0e431818ca
python.pkgs.btrfs: 11 -> 12
...
and switch to fetchFromGithub as it's not published on pypi
2021-04-26 00:20:47 +02:00
Luflosi
fe8de6564d
linuxPackages.usbip: clarify license
2021-04-26 00:15:44 +02:00
R. RyanTM
68c34de775
dnsproxy: 0.37.1 -> 0.37.2
2021-04-25 21:52:07 +00:00
Anderson Torres
b1c9917f71
Merge pull request #120625 from AndersonTorres/quick-modifications
...
Updates
ftgl: 2.1.3-rc5 -> 2.4.0;
cimg: 2.9.6 -> 2.9.7;
dialog: 1.3-2210306 -> 1.3-2210324;
docutils: 0.16 -> 0.17.1;
fme: refactor
2021-04-25 18:43:59 -03:00
zowoq
11c7219d4d
youtube-dl: 2021.04.07 -> 2021.04.26
...
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.04.26
2021-04-26 07:34:53 +10:00
con-f-use
73c8614a07
mcomix3: 2020-11-23 -> 2021-04-23
...
closes #119936
2021-04-25 23:32:44 +02:00
Mauricio Collares
e1ad2f5aa4
sage: remove cypari2 override
...
This reverts commit c12ef05bda5bf3d31918ee97d717cd3221926e8c.
2021-04-25 18:21:58 -03:00
Michael Raskin
14f65f0dc5
Merge pull request #116365 from omasanori/sage-9.3
...
sage: 9.2 -> 9.3
2021-04-25 21:17:32 +00:00
Robert Schütz
383a3d41a1
mplayer: use ffmpeg instead of ffmpeg_3
2021-04-25 23:00:01 +02:00
AndersonTorres
9066cb97fe
fme: refactor
2021-04-25 17:54:09 -03:00
AndersonTorres
7845989118
docutils: 0.16 -> 0.17.1
2021-04-25 17:54:09 -03:00
Maximilian Bosch
e6b6b82d79
Merge pull request #120592 from TredwellGit/wireshark
...
wireshark: 3.4.4 -> 3.4.5
2021-04-25 22:30:55 +02:00
Mario Rodas
c3a6fc6f02
Merge pull request #120624 from marsam/update-avfs
...
avfs: 1.1.3 -> 1.1.4
2021-04-25 15:30:41 -05:00
R. RyanTM
bc66efc5db
bazelisk: 1.7.5 -> 1.8.0
2021-04-25 20:22:31 +00:00
Maximilian Bosch
d3d3a94e76
Merge pull request #120546 from woffs/nncp-6.4.0
...
nntp: 6.3.0 -> 6.4.0
2021-04-25 22:14:27 +02:00
Maximilian Bosch
21cdae5524
Merge pull request #120623 from dotlambda/simplescreenrecorder-0.4.3
...
simplescreenrecorder: 0.3.11 -> 0.4.3
2021-04-25 22:10:47 +02:00
Ryan Mulligan
1e4cba2908
Merge pull request #120630 from r-ryantm/auto-update/agi
...
agi: 1.1.0-dev-20210421 -> 1.1.0-dev-20210423
2021-04-25 13:01:15 -07:00
Amanjeev Sethi
bf4c2036af
maintainers: add Amanjeev Sethi
2021-04-25 15:49:26 -04:00
R. RyanTM
4b0bde3b42
agi: 1.1.0-dev-20210421 -> 1.1.0-dev-20210423
2021-04-25 19:44:22 +00:00
fortuneteller2k
43b9727a55
kile-wl: init at unstable-2021-04-22
2021-04-26 03:44:01 +08:00
Andrei Pampu
7b7ef90b2a
bazarr: 0.9.2 -> 0.9.4
2021-04-25 22:43:59 +03:00
Andrei Pampu
cdd61f4b71
sonarr: 3.0.5.1144 -> 3.0.6.1196
2021-04-25 22:38:08 +03:00
Samuel Dionne-Riel
7b8b3fab6d
make-disk-image: Round image size to the next mebibyte
...
This ensures the following gptfdisk warning won't happen:
```
Warning: File size is not a multiple of 512 bytes! Misbehavior is likely!
```
Additionally, helps towards aligning the partition to be more optimal
for the underlying storage.
It is actually impossible to align for the actual underlying storage
optimally because we don't know what the block device will be!
But aligning on 1MiB should help.
2021-04-25 15:24:45 -04:00