Commit Graph

68953 Commits

Author SHA1 Message Date
Ben Siraphob
b0e98a180f
Merge pull request #158246 from Ma27/zathura-overrides
zathura: improve overridability; set plugin dir through the environment
2022-02-06 20:30:54 +00:00
Ben Siraphob
bd076da1d2
Merge pull request #147646 from ylh/patch-gmu
mpd, game-music-emu: fix aarch64-darwin build
2022-02-06 19:30:18 +00:00
Robert Hensing
6be11a84aa
Merge pull request #155892 from hercules-ci/nixos-etc-unit-test
nixos: Refactor to allow `etc` unit test
2022-02-06 16:12:25 +01:00
legendofmiracles
0e1716410e
Merge pull request #158323 from AmeerTaweel/pkgs-lookatme
lookatme: init at 2.3.2
2022-02-06 09:33:25 -05:00
Ameer Taweel
6f2cabd82c lookatme: init at 2.3.2 2022-02-06 17:29:19 +03:00
Guillaume Girol
942b0817e8
Merge pull request #158041 from symphorien/bindgen
rust-bindgen: fix finding c++ stdlib
2022-02-06 12:41:57 +00:00
Felix Bühler
8fedc72324
Merge pull request #158297 from Stunkymonkey/findimagedupes-package
findimagedupes: make as separate package
2022-02-06 13:21:17 +01:00
Florian Klink
def482e28d
Merge pull request #150837 from abbradar/google-guest-agent
Move GCE config to google-guest-agent
2022-02-06 11:27:27 +01:00
Artturin
26b7980516 gh2md: init at 2.0.0
useful to backup github issues and PRs
2022-02-05 17:24:12 -08:00
Anderson Torres
288d13bc7e
Merge pull request #158181 from AndersonTorres/new-vte
kermit: init at 3.5
2022-02-05 22:01:26 -03:00
Felix Buehler
44c6f10cc6 findimagedupes: make as separate package 2022-02-06 00:11:00 +01:00
Samuel Ainsworth
b6558a0aec
Merge pull request #158186 from samuela/samuela/jaxlib
python3Packages.jaxlib-bin: 0.1.71 -> 0.1.75
2022-02-05 13:22:41 -08:00
davidak
a57a774cfa
Merge pull request #157314 from onny/passwordsafe
gnome-passwordsafe: rename to gnome-secrets, 5.1 -> 6.1
2022-02-05 21:55:38 +01:00
7c6f434c
8b46ac6596
Merge pull request #155536 from SFrijters/wine-remove-libraries
wine: Remove bundled libraries
2022-02-05 20:40:41 +00:00
Nikolay Amiantov
077d0524cc google-compute-engine-oslogin: 20210429.00 -> 20211213.00
* Rename to google-guest-oslogin;
* Fix systemd service;
* Small cleanup.
2022-02-05 23:33:10 +03:00
Nikolay Amiantov
c3f278bfba google-guest-configs: init at 20211116.00 2022-02-05 23:33:10 +03:00
Nikolay Amiantov
6c3dd634ef google-guest-agent: init at 20220104.00 2022-02-05 23:33:10 +03:00
Robert Hensing
dd6dc4cdee
Merge pull request #158242 from milahu/patch-17
nixpkgs-basic-release-checks.nix: print errors
2022-02-05 20:24:31 +01:00
Maximilian Bosch
c0bd479d77
zathura: improve overridability; set plugin dir through the environment
The current package setup has two issues:

* You can only access `pkgs.zathura` which is the "final" derivation,
  i.e. a wrapper. This is a problem if you want to apply a patch to
  `zathura(1)` in an overlay. To make this a bit easier, I decided to
  expose `zathuraPkgs` entirely and `zathura` is now
  `zathuraPkgs.zathuraWrapper`.

  With this change, patches can now be added like this:

  ```
  with import ./. {
    overlays = [
      (self: super: {
        zathura = super.zathura.override {
          zathura_core = super.zathuraPkgs.zathura_core.overrideAttrs (_: {
            patches = [
              ~/Projects/zathura/0001-Fix-remote-link-resolution-in-zathura.patch
            ];
          });
        };
      })
    ];
  };
  zathura
  ```

* As soon as you open another window in `zathura` from `zathura` (e.g.
  to follow a PDF-embedded link to another PDF), it currently fails
  because `--plugins-dir=` isn't passed along. This is because `zathura`
  uses `argv[0]`[1] to open another process and the GApps-wrapper inside
  `zathuraPkgs.zathura_core` does a `exec -a "$0"` which isn't the
  `bin/zathura` from the wrapper that appends `--plugins-dir=`:

  ```
  execve("/nix/var/nix/profiles/per-user/ma27/home-manager-140-link/home-path/bin/zathura", ["/nix/var/nix/profiles/per-user/ma27/home-manager-140-link/home-path/bin/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x7ffd7a4bf4b0 /* 108 vars */) = 0
  execve("/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", ["/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", "--plugins-dir=/nix/store/wcch63yzwykc9x5393dzjfdxsf80mrb8-zathura-with-plugins-0.4.8/lib/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x1442010 /* 107 vars */) = 0
  execve("/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/.zathura-wrapped", ["/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", "--plugins-dir=/nix/store/wcch63yzwykc9x5393dzjfdxsf80mrb8-zathura-with-plugins-0.4.8/lib/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x81d010 /* 108 vars */) = 0
  ```

  I figured it's way simpler to actually use the environment variable
  `ZATHURA_PLUGINS_PATH` for that purpose as the environment is
  inherited when a new process is started.

[1] 242329b534/zathura/links.c (L205-215)
2022-02-05 19:27:24 +01:00
Graham Christensen
605aa6ca3a
Merge pull request #157886 from jonringer/prune-release-small
release-small: prune more obsolete software
2022-02-05 13:13:47 -05:00
AndersonTorres
aab17d11d7 kermit: init at 3.5 2022-02-05 11:28:55 -03:00
milahu
3f323d74d6
nixpkgs-basic-release-checks.nix: print errors 2022-02-05 14:32:54 +01:00
Pavol Rusnak
1ce6ed1917
Merge pull request #157687 from prusnak/fulcrum
fulcrum: init at 1.6.0
2022-02-05 12:39:47 +01:00
Ben Siraphob
ca9a6b1ce8
Merge pull request #158215 from vbgl/ocaml-ppxfind-remove
ocamlPackages.ppxfind: remove
2022-02-05 07:41:08 +00:00
Colin
5c11ca256f
gron: switch to go_1_17
Just needed a hash regen.
2022-02-05 17:37:29 +10:00
Vincent Laporte
b859bcb9eb
ocamlPackages.ppxfind: remove 2022-02-05 08:16:47 +01:00
Colin
d2a7b17640
reproxy: switch to go_1_17
Contains a vendor folder - no hash update needed
2022-02-05 17:14:19 +10:00
Colin
a6f6c0f0ad
victoriametrics: switch to go_1_17
Vendor folder - no hash update required
2022-02-05 17:12:47 +10:00
Colin
0acef310fe
open-policy-agent: switch to go_1_17 2022-02-05 17:03:02 +10:00
Colin
080dc8d8c7
datadog-agent: switch to go_1_17
This appears to just work - The hash doesn't change when regened.
2022-02-05 17:00:50 +10:00
Colin
c09b2057a6
tendermint: switch to go_1_17
Built cleanly - hash regenerated, but no change
2022-02-05 16:59:08 +10:00
Colin
f0c78d8174
uchess: switch to go_1_17
hash regenerated
2022-02-05 16:58:43 +10:00
superherointj
baca640798 ent-go: init 0.10.0 2022-02-05 11:12:52 +10:00
Samuel Ainsworth
d6e2771695 python3Packages.jaxlib-bin: 0.1.71 -> 0.1.75 2022-02-05 00:55:01 +00:00
superherointj
6994e8ae17 cmctl: init 1.7.1 2022-02-05 09:10:46 +10:00
Michael Weiss
b83fb95b30
Merge pull request #151302 from primeos/weston
weston: 9.0.0 -> 10.0.0
2022-02-04 23:12:49 +01:00
Michael Weiss
b7404f6d94
weston: 9.0.0 -> 10.0.0
Release announcement:
https://lists.freedesktop.org/archives/wayland-devel/2022-February/042103.html

Note: weston-launch was deprecated and is now disabled by default.
2022-02-04 22:40:34 +01:00
AndersonTorres
a2092b6ec5 reorder all-packages.nix 2022-02-04 18:25:12 -03:00
Sandro
9faf8ff7b4
Merge pull request #156565 from Groestlcoin/electrum-grs-nix 2022-02-04 18:56:41 +01:00
Sandro
6c6601534a
Merge pull request #156600 from romildo/upd.graphite-kde-theme 2022-02-04 18:25:45 +01:00
Jonas Heinrich
61b6ed869a gnome-passwordsafe: rename to gnome-secrets, 5.0->6.1 2022-02-04 15:14:19 +01:00
piegames
63f6c77039
Merge pull request #157868: obconf: Re-init at unstable-2015-02-13 2022-02-04 12:47:02 +01:00
zowoq
3020762c1e ipfs-migrator: pin to go_1_16 2022-02-04 19:59:40 +10:00
zowoq
36e44512d7 ipfs: pin to go_1_16 2022-02-04 19:59:40 +10:00
zowoq
2176aca465 datadog-agent: pin to go_1_16 2022-02-04 19:59:40 +10:00
Manuel Bärenz
16e16240cf
Merge pull request #156334 from fgaz/vengi-tools/0.0.17
vengi-tools: 0.0.14 -> 0.0.17 and related changes
2022-02-04 10:04:19 +01:00
Colin L Rice
d67ad28fc3 go_1_18: init at go1.18beta1
The go 1.18 beta1 is out. It appears to be building fully (and
suprisingly quickly too - :) ).

I trimmed a couple patches which referenced golang issues which had been
closed.
2022-02-04 14:22:06 +10:00
zowoq
f80278219f
Merge pull request #154059 from qowoz/go116117-testing
go, buildGoModule, buildGoPackage: default to 1.17
2022-02-04 09:52:00 +10:00
Fabian Affolter
bc303262ef
Merge pull request #157255 from fabaff/dontgo403
dontgo403: init at 0.3
2022-02-03 23:57:58 +01:00
Martin Weinelt
15e73b068e
Merge pull request #158052 from fabaff/pyqvrpro 2022-02-03 23:47:50 +01:00