Commit graph

55 commits

Author SHA1 Message Date
Charlotte Van Petegem b6104eecad
eid-mw: 5.0.28 -> 5.1.4 2022-06-28 13:57:34 +02:00
Alyssa Ross fd78240ac8
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07d.  One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries.  This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.

This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching.  The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.

I started by making the following global replacements:

    ${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
    ${openssl.out}/lib -> ${lib.getLib openssl}/lib

Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.

Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.

Then I manually investigated and fixed the following packages:

 - pycurl
 - citrix-workspace
 - ppp
 - wraith
 - unbound
 - gambit
 - acl2

I'm reasonably confindent in my fixes for all of them.

For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all.  Removing it doesn't make a difference to the output size, the
file list, or the closure.

I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-30 15:10:00 +00:00
Renaud 3f0fc168a2 eid-mw: update homepage 2022-02-06 15:10:30 +01:00
Charlotte Van Petegem 18993ff63c
eid-mw: 5.0.23 -> 5.0.28 2021-08-13 16:23:05 +02:00
Charlotte Van Petegem d29130cf23
eid-mw: use more specific license 2021-06-08 09:51:02 +02:00
Charlotte Van Petegem 45096ecfdc
eid-mw: 5.0.21 -> 5.0.23 2021-06-08 09:26:38 +02:00
Charlotte Van Petegem f29969988d
eid-mw: 4.4.27 -> 5.0.21 (#122247) 2021-05-22 15:47:53 +02:00
Ben Siraphob 76f93cc731 pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08: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
Patrick Hilhorst b133532434 treewide: remove some trailing whitespace to please ofborg 2020-10-02 09:01:35 -07:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Charlotte Van Petegem 194d749582 eid-mw: update description to mention pkcs11Modules in firefox wrapper 2020-07-25 16:57:47 +02:00
Charlotte Van Petegem 40e7f27563 eid-mw: 4.4.16 -> 4.4.27 2020-07-06 20:17:47 +02:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
rnhmjoj 5ea4160b33
treewide: fixup bcf54ce
fix the executable bit for scripts installed with substituteAll
and some remaining shebangs.
2019-04-12 09:09:22 +02:00
R. RyanTM 450f494b0f eid-mw: 4.4.13 -> 4.4.16 (#58669)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2019-04-08 00:29:21 +02:00
rnhmjoj bcf54ce5bb
treewide: use ${stdenv.shell} instead of /bin/sh where possible 2019-01-16 20:37:15 +01:00
R. RyanTM d278db3cdf eid-mw: 4.4.11 -> 4.4.13
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2019-01-03 15:07:10 -08:00
R. RyanTM 08e45895a5 eid-mw: 4.4.9 -> 4.4.11
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2018-12-15 22:16:51 -08:00
R. RyanTM 70ef844c4d eid-mw: 4.4.8 -> 4.4.9 (#50123)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2018-11-10 15:20:02 +01:00
R. RyanTM b49c4d2b2e eid-mw: 4.4.7 -> 4.4.8 (#47816)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2018-10-05 15:14:31 +02:00
R. RyanTM cb4eb106e4 eid-mw: 4.4.3 -> 4.4.7 (#47076)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eid-mw/versions
2018-09-24 17:20:55 +02:00
R. RyanTM 506032b24c eid-mw: 4.4.2 -> 4.4.3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/eid-mw/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/eid-viewer had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/.eid-viewer-wrapped had a zero exit code or showed the expected version
- /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/beid-update-nssdb passed the binary check.
- /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/eid-nssdb passed the binary check.
- 2 of 4 passed binary check by having a zero exit code.
- 0 of 4 passed binary check by having the new version present in output.
- found 4.4.3 with grep in /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3
- directory tree listing: https://gist.github.com/3bca8b9d321e62009daf1d388923ec47
- du listing: https://gist.github.com/64220a7b5b960cbd2ec3bb5f61c93a29
2018-06-27 22:56:34 -07:00
R. RyanTM a2f8e94439 eid-mw: 4.4.1 -> 4.4.2 (#41571)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/eid-mw/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/fb82i287dxzdi7iymk84yyvrx5ph4x41-eid-mw-4.4.2/bin/eid-viewer had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/fb82i287dxzdi7iymk84yyvrx5ph4x41-eid-mw-4.4.2/bin/.eid-viewer-wrapped had a zero exit code or showed the expected version
- /nix/store/fb82i287dxzdi7iymk84yyvrx5ph4x41-eid-mw-4.4.2/bin/beid-update-nssdb passed the binary check.
- /nix/store/fb82i287dxzdi7iymk84yyvrx5ph4x41-eid-mw-4.4.2/bin/eid-nssdb passed the binary check.
- 2 of 4 passed binary check by having a zero exit code.
- 0 of 4 passed binary check by having the new version present in output.
- found 4.4.2 with grep in /nix/store/fb82i287dxzdi7iymk84yyvrx5ph4x41-eid-mw-4.4.2
- directory tree listing: https://gist.github.com/9bc7e47978cdc6d1c57b60a0cdf06ffc
- du listing: https://gist.github.com/8f3d2be711226cec456c9d62c6e114d6
2018-06-08 18:41:56 +02:00
Bernard Fortz d84a06feca eid-mw: 4.1.19 -> 4.4.1
Urgent version bump as tax season is coming and 4.1.19 is not compatible
with firefox anymore.

eid-viewer was merged upstream with eid-mw, so it is included here now.
2018-05-05 21:02:31 +02:00
Bernard Fortz 0c4f72c377 eid-mw: 4.1.19 -> 4.4.1
Urgent version bump as tax season is coming and 4.1.19 is not compatible
with firefox anymore.

eid-viewer was merged upstream with eid-mw, so it is included here now.
2018-05-05 17:48:36 +02:00
Bernard Fortz 558c8a280f eid-mw: 4.1.19 -> 4.3.7
Urgent version bump as tax season is coming and 4.1.19 is not compatible
with firefox anymore.
2018-05-05 15:26:44 +02:00
Tobias Geerinckx-Rice 0f84673f3d
Remove nckx as a maintainer for all packages
Goodbye, and thanks for all the Nix...
2018-01-16 23:00:49 +01:00
Tobias Geerinckx-Rice e3a7fc3905
eid-mw: 4.1.18 -> 4.1.19 2016-11-16 13:32:25 +01:00
Tobias Geerinckx-Rice 186f7d9bb5
eid-mw: 4.1.17 -> 4.1.18 2016-05-21 14:13:29 +02:00
Tobias Geerinckx-Rice 750d58f439
eid-mw: 4.1.16 -> 4.1.17 2016-05-05 02:15:14 +02:00
Tobias Geerinckx-Rice 3fdf40bca0
eid-mw: 4.1.14 -> 4.1.16 2016-04-22 17:11:20 +02:00
Tobias Geerinckx-Rice 7818fda09e
eid-mw: 4.1.13 -> 4.1.14 2016-04-14 18:34:53 +02:00
Tobias Geerinckx-Rice 9fb8020e4e Add version attribute where maintainers |= nckx
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00
Tobias Geerinckx-Rice 3b64fec18d eid-mw: 4.1.12 -> 4.1.13 2016-01-21 20:32:12 +01:00
Tobias Geerinckx-Rice 5876238d54 eid-mw: 4.1.11 -> 4.1.12 2016-01-14 23:55:47 +01:00
Tobias Geerinckx-Rice d4b14974e5 eid-mw: 4.1.9 -> 4.1.11 2015-12-19 12:41:31 +01:00
Tobias Geerinckx-Rice e5fca5832b eid-mw: use GTK 3 2015-12-09 21:55:51 +01:00
Tobias Geerinckx-Rice 8c81b79875 eid-mw: force-enable dialogues 2015-12-09 21:55:51 +01:00
Tobias Geerinckx-Rice f4748d976e eid-mw 4.1.8 -> 4.1.9 2015-12-09 21:55:51 +01:00
Tobias Geerinckx-Rice 1dd11961d8 eid-mw 4.1.7 -> 4.1.8 2015-10-28 01:16:25 +01:00
Tobias Geerinckx-Rice 5d5a03f190 eid-mw 4.1.6 -> 4.1.7 2015-10-15 14:22:02 +02:00
Tobias Geerinckx-Rice 0f0b20ac0c eid-mw: 4.1.5 -> 4.1.6 2015-09-16 13:08:17 +02:00
Tobias Geerinckx-Rice a913ad89c1 eid-mw: 4.1.4 -> 4.1.5 2015-08-14 03:07:10 +02:00
Tobias Geerinckx-Rice 6c6201a99b Remove unnecessary rec{s from "my" packages 2015-07-31 02:02:07 +02:00
Tobias Geerinckx-Rice 9294f368f9 eid-mw: 4.1.2 -> 4.1.4 2015-07-30 16:18:37 +02:00
Tobias Geerinckx-Rice 98b2d7b727 Separate nativeBuildInputs where maintainers |= nckx 2015-06-17 22:21:32 +02:00
Tobias Geerinckx-Rice 860589227b eid-mw: don't install useless about-eid-mw.desktop 2015-06-04 20:31:05 +02:00
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00