Renaud
d6716e4eee
dfasma: update homepage
2022-02-06 15:10:22 +01:00
Renaud
c0e0b44964
cvs2svn: update homepage
...
and update source tarball URL
2022-02-06 15:10:21 +01:00
nixbitcoin
d3d6dd802c
btcpayserver: 1.3.7 -> 1.4.3
2022-02-06 15:02:53 +01:00
Samuel Gräfenstein
157807406c
ungoogled-chromium: fix build
2022-02-06 15:01:47 +01:00
Nathaniel Griswold
51d95fc72a
irssi_fish: update for changes made to irssi src
2022-02-06 03:48:01 -06:00
Nathaniel Griswold
04f02145ad
irssi: switch from tarball to git tag
...
I've just switched irssi to build from the 1.2.3 tag in the git tree, as
the build was failing on apple silicon when linking libirc_proxy.la in
dir `src/irc/proxy`
I kinda just switched it and it built. I did not dig very deep on the
reasons behind why this fixed things. I am hoping that Linux still
builds, as i have not tested it. Some notes:
- The sys_lib_search_path done by fixLibtool in the configure phase now
no longer seems to update with the NIX_LDFLAGS. It appears that this
is because the newer libtool script does not start the line with
'eval', so the sed does not match.
- My system still builds, despite the previous item. I noticed that on
this new build, my system defines `allow_undefined_flag` in the
libtool script to something nonempty. I guess that may be the reason
everything still builds and works at runtime.
2022-02-06 03:47:04 -06:00
zowoq
598c791f2c
Revert "hello: 2.10 -> 2.12" ( #158328 )
...
This reverts commit 3e4412db9c
.
broke `stdenvBootstrapTools.x86_64-darwin.test`, blocking nixpkgs-unstable
2022-02-06 03:00:34 -05:00
Anderson Torres
fc84a35ac0
Merge pull request #158312 from AndersonTorres/new-vte
...
kermit: 3.5 -> 3.7
2022-02-06 01:01:04 -03:00
Anderson Torres
bbc55813aa
Merge pull request #158263 from sternenseemann/fcft-3.0.0
...
fcft: 2.5.1 -> 3.0.1; foot: 1.10.3 -> 1.11.0; fuzzel: 1.6.5 -> 1.7.0; yambar: 1.7.0 -> 1.8.0; fnott: 1.1.2 -> 1.2.0
2022-02-06 01:00:18 -03:00
Mario Rodas
955079ad77
Merge pull request #156502 from r-ryantm/auto-update/x11docker
...
x11docker: 6.10.0 -> 7.0.1
2022-02-05 21:44:57 -05:00
Mario Rodas
1fdd39c21a
Merge pull request #157947 from r-ryantm/auto-update/tanka
...
tanka: 0.19.0 -> 0.20.0
2022-02-05 21:44:20 -05:00
AndersonTorres
0846c455ef
kermit: 3.5 -> 3.7
...
Now with manpage and desktop files!
2022-02-05 22:07:53 -03: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
sternenseemann
43e2ae75df
fnott: 1.1.2 -> 1.2.0
...
https://codeberg.org/dnkl/fnott/releases/tag/1.2.0
2022-02-05 23:27:21 +01:00
sternenseemann
efc6c8ff2f
yambar: 1.7.0 -> 1.8.0
...
https://codeberg.org/dnkl/yambar/releases/tag/1.8.0
2022-02-05 23:27:20 +01:00
sternenseemann
ddcb876d51
fuzzel: 1.6.5 -> 1.7.0
...
https://codeberg.org/dnkl/fuzzel/releases/tag/1.7.0
2022-02-05 23:27:20 +01:00
sternenseemann
29555537d2
foot: 1.10.3 -> 1.11.0
...
https://codeberg.org/dnkl/foot/releases/tag/1.11.0
2022-02-05 23:27:20 +01:00
Mario Rodas
6f09a28dd3
Merge pull request #158271 from r-ryantm/auto-update/flexget
...
flexget: 3.2.16 -> 3.2.18
2022-02-05 16:18:13 -05: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
R. RyanTM
1bfc1730e1
cwltool: 3.1.20220202173120 -> 3.1.20220204090313 ( #158272 )
2022-02-05 15:14:21 -05:00
R. Ryantm
62de311c2e
flexget: 3.2.16 -> 3.2.18
2022-02-05 19:39:57 +00:00
0x4A6F
ca9211c2bc
Merge pull request #157971 from toastal/himalaya-0.5.2
...
himalaya: 0.5.1 → 0.5.4
2022-02-05 19:55:24 +01:00
Mario Rodas
00089fcaf0
Merge pull request #157944 from Lyndeno/pueue-1.0.6
...
pueue: 1.0.4 -> 1.0.6
2022-02-05 13:28:50 -05: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
R. RyanTM
260128ce57
tev: 1.22 -> 1.23
...
* tev: 1.22 -> 1.23 (#157949 )
* tev: remove unnecessary patching
substituteStream(): WARNING: pattern '/usr/' doesn't match anything in file 'CMakeLists.txt'
Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
2022-02-05 18:23:16 +01:00
Sandro
b9a9a5db84
Merge pull request #149713 from buckley310/vmwareview
2022-02-05 17:55:21 +01:00
Benjamin Hipple
be1c870207
Merge pull request #158234 from lsix/rcs-5.10.1
...
rcs: 5.10.0 -> 5.10.1
2022-02-05 11:28:00 -05:00
AndersonTorres
aab17d11d7
kermit: init at 3.5
2022-02-05 11:28:55 -03:00
Luke Granger-Brown
d4fc4cbf27
Merge pull request #157884 from pacien/mercurial-6.0.2
...
mercurial: 6.0.1 -> 6.0.2
2022-02-05 14:22:22 +00:00
Christian Kögler
87631775cb
neovide: 2021-10-09 -> 2022-02-04
2022-02-05 14:26:44 +01:00
Bobby Rong
3c1cbb4fb1
Merge pull request #157917 from dali99/update_hydrus2
...
hydrus: 471 -> 472
2022-02-05 20:19:21 +08:00
Lancelot SIX
8f608f437a
rcs: 5.10.0 -> 5.10.1
...
See https://lists.gnu.org/archive/html/info-gnu/2022-02/msg00001.html
for release information.
2022-02-05 12:08:06 +00:00
Bobby Rong
133081f63a
Merge pull request #158230 from totoroot/fix-typo-jove
...
jove: fix typo in package description
2022-02-05 20:08:06 +08:00
Matthias Thym
9d65a3bd2d
jove: fix typo in package description
2022-02-05 12:46:07 +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
Vladimir Serov
1766d4bc09
super-slicer: 2.3.57.9 -> 2.3.57.10
2022-02-04 21:44:19 -08:00
Bobby Rong
6d982a2c88
vscodium: 1.63.2 -> 1.64.0
2022-02-05 12:44:07 +08:00
Bobby Rong
0c618de480
vscode: 1.63.2 -> 1.64.0
2022-02-05 12:43:47 +08:00
toastal
3422273b30
himalaya: 0.5.1 → 0.5.4
...
https://github.com/soywod/himalaya/releases/tag/v0.5.2
https://github.com/soywod/himalaya/releases/tag/v0.5.3
https://github.com/soywod/himalaya/releases/tag/v0.5.4
2022-02-05 10:58:38 +07:00
Ryan Mulligan
357a1cf5e9
Merge pull request #157713 from r-ryantm/auto-update/tutanota-desktop
...
tutanota-desktop: 3.89.25 -> 3.91.6
2022-02-04 19:36:46 -08:00
Ryan Burns
5aaf3d7b59
songrec: 0.2.1 -> 0.3.0
...
Also add new dbus dependency
2022-02-04 19:23:14 -08:00
James Ravn
e9a183f536
kubebuilder: 3.2.0 -> 3.3.0
...
Update kubebuilder to 3.3.0. Use go 1.17 since kubebuilder 3.3.0 now
requires it.
2022-02-04 18:35:15 -08:00
André Silva
3c8f4469e2
ledger-live-desktop: 2.36.3 -> 2.37.2
2022-02-04 18:34:48 -08:00
R. Ryantm
ff102452dd
rofi-emoji: 2.2.0 -> 2.3.0
2022-02-04 18:31:11 -08:00
R. Ryantm
5cb9fbd5ff
rocketchat-desktop: 3.7.6 -> 3.7.7
2022-02-04 18:30:54 -08:00
Yurii Matsiuk
d7c728f6ef
fluxcd: 0.25.3 -> 0.26.1
...
https://github.com/fluxcd/flux2/releases/tag/v0.26.1
2022-02-04 18:22:25 -08:00
R. Ryantm
4daa4bf535
ffmpeg-normalize: 1.22.4 -> 1.22.5
2022-02-04 18:04:50 -08:00
R. Ryantm
e2384303a0
slack: 4.22.0 -> 4.23.0
2022-02-04 18:02:44 -08:00
Ryan Mulligan
438ec49e52
Merge pull request #158095 from r-ryantm/auto-update/xplr
...
xplr: 0.17.1 -> 0.17.2
2022-02-04 16:07:02 -08:00
Pavol Rusnak
5008fc169e
Merge pull request #158166 from erikarvstedt/electrs-0.9.5
...
electrs: 0.9.4 -> 0.9.5
2022-02-05 00:55:18 +01:00
superherointj
6994e8ae17
cmctl: init 1.7.1
2022-02-05 09:10:46 +10:00
Michael Weiss
9f50539169
Merge pull request #158173 from primeos/chromiumDev
...
chromiumDev: 99.0.4844.16 -> 100.0.4867.0
2022-02-05 00:09:04 +01:00
Michael Weiss
41ab54977a
Merge pull request #158172 from primeos/chromiumBeta
...
chromiumBeta: 98.0.4758.80 -> 99.0.4844.17
2022-02-05 00:08:44 +01:00
Michael Weiss
0ac7096740
chromiumDev: 99.0.4844.16 -> 100.0.4867.0
2022-02-04 23:33:46 +01:00
Michael Weiss
1d902f69ef
chromiumBeta: 98.0.4758.80 -> 99.0.4844.17
2022-02-04 23:33:13 +01: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
Erik Arvstedt
80a70ce0d5
electrs: 0.9.4 -> 0.9.5
2022-02-04 22:51:50 +01:00
Michael Weiss
fea66ceb88
Merge pull request #158035 from primeos/ungoogled-chromium
...
ungoogled-chromium: 97.0.4692.99 -> 98.0.4758.80
2022-02-04 22:45:13 +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
Michael Weiss
a12cfff5b2
ungoogled-chromium: 97.0.4692.99 -> 98.0.4758.80
2022-02-04 22:10:32 +01:00
Michael Weiss
61326af4a8
Merge pull request #158112 from r-ryantm/auto-update/wlroots
...
wlroots: 0.15.0 -> 0.15.1
2022-02-04 21:48:05 +01:00
Michael Weiss
8901fa8016
Merge pull request #158143 from r-ryantm/auto-update/signal-desktop
...
signal-desktop: 5.29.1 -> 5.30.0
2022-02-04 21:38:24 +01:00
Michael Weiss
2cff8bed2f
labwc: Fix the build with wlroots 0.15.1
2022-02-04 21:27:02 +01:00
Pascal Bach
dcdbe449c4
Merge pull request #158121 from r-ryantm/auto-update/syncthing
...
syncthing: 1.18.6 -> 1.19.0
2022-02-04 21:09:11 +01:00
Pavol Rusnak
736b3a02bb
Merge pull request #158138 from prusnak/lnd
...
lnd: 0.14.1-beta -> 0.14.2-beta
2022-02-04 21:01:11 +01:00
Maximilian Bosch
50178beea3
Merge pull request #157812 from JesusMtnezForks/hugo
...
hugo: 0.92.0 -> 0.92.1
2022-02-04 20:23:51 +01:00
Sandro
9faf8ff7b4
Merge pull request #156565 from Groestlcoin/electrum-grs-nix
2022-02-04 18:56:41 +01:00
Sandro
63a6539b76
Merge pull request #157198 from afontaine/afontaine/correct-fah-shortcuts
2022-02-04 18:26:20 +01:00
R. Ryantm
40bc60f594
signal-desktop: 5.29.1 -> 5.30.0
2022-02-04 17:14:00 +00:00
Fabian Dröge
b2cb244b37
hyper: 3.1.4 -> 3.2.0 ( #158124 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-02-04 18:41:57 +02:00
Pavol Rusnak
2dce6e7aa0
lnd: 0.14.1-beta -> 0.14.2-beta
2022-02-04 17:41:24 +01:00
Artturi
854cfcc7c2
Merge pull request #158133 from FliegendeWurst/trilium-0.50.1
2022-02-04 18:37:38 +02:00
Artturi
87d4910e46
Merge pull request #153939 from tomfitzhenry/squeekboard-1.15
2022-02-04 18:30:41 +02:00
FliegendeWurst
0d73716278
trilium: 0.49.5 -> 0.50.1
2022-02-04 16:04:33 +01:00
Jonas Heinrich
61b6ed869a
gnome-passwordsafe: rename to gnome-secrets, 5.0->6.1
2022-02-04 15:14:19 +01:00
R. Ryantm
1e8a3ffe29
syncthing: 1.18.6 -> 1.19.0
2022-02-04 13:51:29 +00:00
Bobby Rong
6bd5ecd837
Merge pull request #156582 from r-ryantm/auto-update/menyoki
...
menyoki: 1.5.5 -> 1.5.6
2022-02-04 21:48:17 +08:00
Florian Klink
eee549ab8b
Merge pull request #158099 from r3dl3g/master
...
jameica 2.10.0 -> 2.10.1
2022-02-04 13:05:24 +01:00
Martin Weinelt
ffe7f27eb3
gitlab: 14.7.0 -> 14.7.1 ( #158069 )
...
https://about.gitlab.com/releases/2022/02/03/security-release-gitlab-14-7-1-released/
2022-02-04 11:57:17 +01:00
Sandro
38b555efa7
Merge pull request #157856 from LibreCybernetics/update-android-studio-preview
2022-02-04 11:03:00 +01:00
Sandro
54d21fbb0e
Merge pull request #157854 from LibreCybernetics/update-jetbrains
2022-02-04 11:02:46 +01:00
Sandro
221959fbbd
Merge pull request #158077 from legendofmiracles/update/archi
2022-02-04 10:57:44 +01:00
Armin Rothfuss
d1ec33e8a8
jameica 2.10.0 -> 2.10.1
2022-02-04 10:39:19 +01:00
R. Ryantm
3410d872a3
xplr: 0.17.1 -> 0.17.2
2022-02-04 09:24:37 +00:00
Bobby Rong
c2262bfb40
Merge pull request #157724 from fgaz/pt2-clone/1.40
...
pt2-clone: 1.39 -> 1.40
2022-02-04 17:17:13 +08: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
Bobby Rong
5c9b6ab9ca
Merge pull request #157725 from fgaz/ft2-clone/1.51
...
ft2-clone: 1.50 -> 1.51
2022-02-04 16:32:58 +08:00
Bobby Rong
07875d32d5
Merge pull request #157850 from emmanuelrosa/bisq-update
...
bisq-desktop: 1.8.0 -> 1.8.2
2022-02-04 15:40:48 +08:00
pennae
75b305d5b9
Merge pull request #158065 from r-ryantm/auto-update/kitty
...
kitty: 0.24.1 -> 0.24.2
2022-02-04 01:43:33 +00:00
R. Ryantm
af3af2df32
cwltool: 3.1.20220124184855 -> 3.1.20220202173120
2022-02-03 20:06:12 -05:00
R. Ryantm
02ba965390
kitty: 0.24.1 -> 0.24.2
2022-02-04 00:21:32 +00:00
Pascal Bach
f46ae00b26
Merge pull request #157933 from TredwellGit/brave
...
brave: 1.34.81 -> 1.35.100
2022-02-03 20:41:58 +01:00
R. Ryantm
b484b1c2dd
stgit: 1.4 -> 1.5
2022-02-03 10:38:34 -08:00
R. Ryantm
cd1daa018a
sidplayfp: 2.2.2 -> 2.2.3
2022-02-03 10:36:18 -08:00
R. Ryantm
2536a4a2d8
terragrunt: 0.36.0 -> 0.36.1
2022-02-03 10:17:40 -08:00
R. Ryantm
3bb74c77da
stern: 1.20.1 -> 1.21.0
2022-02-03 10:17:20 -08:00
legendofmiracles
92d7fa372b
ArchiSteamFarm: 5.2.1.5 -> 5.2.2.4; ASF-ui: update
2022-02-03 11:32:05 -06:00
Robert Schütz
0ccdb13c05
numberstation: 1.0.1 -> 1.1.0
...
https://git.sr.ht/~martijnbraam/numberstation/refs/1.1.0
2022-02-03 17:12:03 +00:00
Timo Kaufmann
0371c7ba56
Merge pull request #157981 from collares/sage-fonttools-revert
...
sage: no longer assume fonttools emits deprecation warnings
2022-02-03 18:03:39 +01:00
Jean-François Roche
743d011616
hivemind: 1.0.6 -> 1.1.0 ( #157994 )
...
Update to latest release: https://github.com/DarthSim/hivemind/releases/tag/v1.1.0
2022-02-03 17:15:34 +01:00