Commit Graph

85 Commits

Author SHA1 Message Date
toonn
6353dfb566 wire-desktop: Stop caching binary package
The build for a binary distribution like Wire Desktop is very light and
having Hydra build and cache it is a bit of a waste of resources. We
should follow Nixpkgs convention of not having Hydra build and therefore
neither cache binary packages.
2023-10-09 15:55:42 +02:00
toonn
eaee6450da wire-desktop: Add aarch64-darwin platform 2023-10-09 15:54:08 +02:00
toonn
38c38c7cd6 wire-desktop: mac 3.31.4556 -> 3.32.4589 2023-10-09 15:52:49 +02:00
toonn
b95655aa89 wire-desktop: linux 3.31.3060 -> 3.32.3079 2023-10-09 15:32:04 +02:00
Sandro Jäckel
a97aff3fcc
wire-desktop: remove atomEnv 2023-10-03 16:37:22 +02:00
toonn
fd9f2638aa wire-desktop: mac 3.30.4506 -> 3.31.4556 2023-05-17 13:06:39 +02:00
toonn
52600003a4 wire-desktop: linux 3.30.3018 -> 3.31.3060 2023-05-17 12:53:20 +02:00
Florian Klink
57dd90cecb wire-desktop: mac: 3.29.4490 -> 3.30.3018 2022-12-23 12:26:21 +01:00
Florian Klink
aee59c734e wire-desktop: use hash instead of sha256
With everything being SRI hashes, we can use `hash` now.
2022-12-23 12:13:28 +01:00
Florian Klink
466e19114b wire-desktop: mac: use SRI hash 2022-12-23 12:12:39 +01:00
Florian Klink
e3587c4eb7 wire-desktop: linux 3.29.3004 -> 3.30.3018 2022-12-23 12:06:12 +01:00
toonn
c08bef1fc1
wire-desktop: mac 3.29.4477 -> 3.29.4490 2022-11-08 11:34:31 +01:00
toonn
f54eac6053
wire-desktop: linux 3.29.2997 -> 3.29.3004 2022-11-08 11:32:34 +01:00
toonn
aa3e6347fc
wire-desktop: mac 3.28.4393 -> 3.29.4477 2022-10-18 15:01:55 +02:00
toonn
46142236d9
wire-desktop: linux 3.28.2946 -> 3.29.2997 2022-10-18 14:58:55 +02:00
toonn
5aaae1ddc9
wire-desktop: mac 3.27.4357 -> 3.28.4393 2022-07-13 19:30:37 +02:00
toonn
9126d975e8
wire-desktop: linux 3.27.2944 -> 3.28.2946 2022-07-13 19:29:12 +02:00
Robert Scott
466c2e342a treewide/applications: add sourceType binaryNativeCode for many packages 2022-06-23 18:38:19 +01:00
Artturi
5849fe99b8
Merge pull request #168653 from flokli/wire-desktop-libxshmfence
wire-desktop: fix linux build
2022-04-14 23:55:01 +03:00
Florian Klink
68e866ecf2 wire-desktop: fix linux build
autopatchelf currently fails. adding libxshmfence was included in
https://github.com/NixOS/nixpkgs/pull/168636, but missing in
https://github.com/NixOS/nixpkgs/pull/168317.
2022-04-14 20:02:28 +02:00
toonn
59a591b141
wire-desktop: mac 3.26.4145 -> 3.27.4357 2022-04-11 22:13:08 +02:00
toonn
afcedb3f0a
wire-desktop: linux 3.26.2941 -> 3.27.2944 2022-04-11 22:10:24 +02:00
K900
cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
toonn
eb532c7f48
wire-desktop: mac 3.25.4095 -> 3.26.4145 2021-06-28 15:14:51 +02:00
toonn
e873dee455
wire-desktop: linux 3.25.2940 -> 3.26.2941 2021-06-28 15:13:29 +02:00
toonn
462c21b533
wire-desktop: mac 3.24.4059 -> 3.25.4095 2021-05-11 19:17:07 +02:00
toonn
07dc385e07
wire-desktop: linux 3.24.2939 -> 3.25.2940 2021-05-11 19:14:32 +02:00
Vladimír Čunát
9f054b5e1a
treewide: remove worldofpeace from meta.maintainers
(It was requested by them.)
I left one case due to fetching from their personal repo:
pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
2021-05-07 15:36:40 +02:00
toonn
74d057c815
wire-desktop: mac 3.23.4046 -> 3.24.4059 2021-03-29 21:42:11 +02:00
toonn
1336a074c4
wire-desktop: linux 3.23.2938 -> 3.24.2939 2021-03-29 21:39:58 +02:00
toonn
a5736f5cf5
wire-desktop: mac 3.21.3959 -> 3.23.4046 2021-03-17 13:37:56 +01:00
toonn
76556fe074
wire-desktop: linux 3.22.2937 -> 3.23.2938 2021-03-17 13:35:17 +01:00
toonn
5d6f159ee6
wire-desktop: Add missing phase hooks 2021-03-05 18:07:53 +01:00
toonn
dd4b13bcf3
wire-desktop: linux 3.21.2936 -> 3.22.2937 2021-03-05 12:27:06 +01:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
toonn
e6a44b2fc4
wire-desktop: mac 3.20.3912 -> 3.21.3959 2020-10-30 08:54:19 +01:00
toonn
fa20999c64
wire-desktop: linux 3.20.2934 -> 3.21.2936 2020-10-30 08:52:57 +01:00
toonn
4448bd4e10
wire-desktop: mac 3.18.3728 -> 3.20.3912 2020-10-07 12:03:35 +02:00
toonn
ad9d115682
wire-desktop: linux 3.18.2925 -> 3.20.2934 2020-10-07 11:58:56 +02:00
Lana Black
ad64c682b7 wire-desktop: Add libdbusmenu dependency
Allows using global menu in various desktop environments.
2020-09-02 17:58:37 +00:00
Florian Klink
a89a4ae87e wire-desktop: use lib.getLib udev instead of udev.lib
This will pick the `lib` output if it exists, otherwise default to `out`.
2020-08-13 20:51:41 +02:00
toonn
787a38bf6b wire-desktop: mac 3.18.3728 -> 3.19.3799 2020-08-06 01:09:35 +02:00
toonn
cc8d2ba291 wire-desktop: linux 3.18.2925 -> 3.19.2928 2020-08-06 01:07:37 +02:00
toonn
7f07e9909c wire-desktop: mac 3.17.3666 -> 3.18.3728 2020-06-02 12:52:30 -07:00
toonn
8662e58ed4 wire-desktop: linux 3.17.2924 -> 3.18.2925 2020-06-02 12:52:30 -07:00
toonn
b408b8c8e4
wire-desktop: mac 3.16.3630 -> 3.17.3666 2020-05-06 15:56:20 +02:00
toonn
84b510775c
wire-desktop: linux 3.16.2923 -> 3.17.2924 2020-05-05 22:31:01 +02:00
toonn
39c5e1c723
wire-desktop: mac 3.15.3621 -> 3.16.3630 2020-04-06 18:58:58 +02:00
Florian Klink
728188794e
Merge pull request #82664 from toonn/wire-desktop-bump
wire-desktop: linux 3.12.2916 -> 3.15.2922, mac 3.12.3490 -> 3.15.3621
2020-03-27 19:18:05 +01:00
toonn
55ce589f18
wire-desktop: linux 3.15.2922 -> 3.16.2923 2020-03-26 12:35:29 +01:00