Commit Graph

48 Commits

Author SHA1 Message Date
Alexey Orlenko
07ed6685dc
prisma-engines: 5.4.1 -> 5.6.0 2023-11-15 19:18:17 +01:00
Alexey Orlenko
0776733a1d
prisma-engines: 5.2.0 -> 5.4.1 2023-10-07 01:37:24 +02:00
Alexey Orlenko
fcd6294e6e
prisma-engines: 5.0.0 -> 5.2.0 2023-08-28 20:37:51 +02:00
Alexey Orlenko
00543a72db
prisma-engines: 4.13.0 -> 5.0.0 2023-07-17 11:15:10 +02:00
Alexey Orlenko
15b46bc5e4
prisma-engines: add aqrln maintainer 2023-07-17 11:15:10 +02:00
Julius de Bruijn
a5c5ba536f prisma-engines: 4.12.0 -> 4.13.0 2023-04-18 16:42:20 +02:00
Pamplemousse
bccf438b41 prisma-engines: removing myself from maintainers 2023-04-02 10:27:11 +02:00
Ivan Kozik
83a0976fd4 prisma-engines: add myself to maintainers 2023-03-29 05:14:05 +00:00
Ivan Kozik
433152d665 prisma-engines: 4.11.0 -> 4.12.0 2023-03-29 05:13:48 +00:00
Yureka
f8cbc3c281 tree-wide: convert rust with git deps to importCargoLock 2023-03-26 01:52:04 +01:00
Julius de Bruijn
bee04d3157 prisma-engines: 4.10.1 -> 4.11.0 2023-02-28 18:17:32 +01:00
Alexey Orlenko
83a2bd87ea prisma-engines: 4.9.0 -> 4.10.1 2023-02-22 17:52:31 +08:00
Tom Houlé
8521af8e97 prisma-engines: 4.8.0 -> 4.9.0 2023-01-18 16:00:07 +01:00
Julius de Bruijn
82e75d1b8d prisma-engines: 4.7.0 -> 4.8.0 2022-12-20 18:13:31 +01:00
Julius de Bruijn
d7a1d9474a prisma-engines: 4.6.0 -> 4.7.0 2022-11-29 18:23:17 +01:00
Tom Houlé
d628e1e4e6 prisma-engines: 4.5.0 -> 4.6.0 2022-11-09 12:02:42 +01:00
github-actions[bot]
bbaff9a043
Merge master into staging-next 2022-10-19 12:01:22 +00:00
Julius de Bruijn
329a651d73 prisma-engines: 4.4.0 -> 4.5.0 2022-10-18 20:04:04 +02:00
Artturin
f4ea1208ec treewide: *Flags convert to list from str
*Flags implies a list

slightly relevant:
> stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172

the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so
it's not a breaking change
2022-10-10 15:30:59 +03:00
superherointj
2e19f2fa53 maintainers: remove superherointj 2022-10-04 14:06:48 -03:00
Julius de Bruijn
fe0266a102 prisma-engines: 4.2.1 -> 4.4.0 2022-09-27 21:46:13 +02:00
Tom Houlé
0cbc6f2f67 prisma-engines: 4.1.1 -> 4.2.1 2022-08-12 09:08:48 +02:00
Tom Houlé
80cc01a3e0 prisma-engines: 4.0.0 -> 4.1.1 2022-08-02 14:19:05 +02:00
Tom Houlé
364b4f09bb prisma-engines: add tomhoule maintainer 2022-08-02 14:19:02 +02:00
Julius de Bruijn
67496fc37c prisma-engines: 3.15.1 -> 4.0.0 2022-06-28 15:27:56 +02:00
Julius de Bruijn
ecf2837a29 prisma-engines: 3.14.0 -> 3.15.1 2022-06-09 18:12:09 +02:00
Julius de Bruijn
c9141b4bfc prisma-engines: 3.13.0 -> 3.14.0 2022-05-10 16:12:21 +02:00
Julius de Bruijn
3a33b00fd8 prisma-engines: 3.12.0 -> 3.13.0 2022-04-27 15:58:50 +02:00
Julius de Bruijn
74176d27e3 prisma-engines: 3.11.0 -> 3.12.0 2022-04-05 17:41:56 +02:00
7c6f434c
8188f10752
Merge pull request #166430 from alyssais/openssl-static-retry
treewide: use lib.getLib for OpenSSL libraries
2022-04-02 12:59:55 +00: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
superherointj
54f62a4cb0 prisma-engines: add superherointj as maintainer 2022-03-26 08:33:37 -03:00
Julius de Bruijn
3dcfea557e prisma: 3.10.0 -> 3.11.0 2022-03-15 20:06:33 +01:00
Julius de Bruijn
b10d4e7b74 prisma 3.8.0 -> 3.10.0 2022-02-22 15:28:44 +01:00
Julius de Bruijn
c7de7dbb53 prisma: 3.7.0 -> 3.8.0 2022-01-11 16:45:33 +01:00
Julius de Bruijn
484bdf473d prisma: 3.6.0 -> 3.7.0 2021-12-21 16:32:05 +01:00
Julius de Bruijn
6ef2261581 prisma: 3.5.0 -> 3.6.0 2021-12-07 20:53:42 +01:00
Julius de Bruijn
9951e81c00 prisma: 3.4.0 -> 3.5.0 2021-11-16 14:45:31 +01:00
Julius de Bruijn
db3faeea8e prisma: 3.2.0 -> 3.4.0 2021-11-03 11:06:43 +01:00
Alyssa Ross
851b719ac6 treewide: use stdenv.hostPlatform.extensions.sharedLibrary where appropriate 2021-10-13 17:39:37 +00:00
Julius de Bruijn
d08986bdaf prisma-engines: add support for darwin 2021-10-07 23:10:58 +02:00
Julius de Bruijn
cdaf4b1290 prisma-engines: add support for aarch64-linux 2021-10-07 14:22:16 +02:00
Julius de Bruijn
d04d7c0dc4 prisma: 3.1.1 -> 3.2.0 2021-10-05 17:06:45 +02:00
Julius de Bruijn
5f7019ed8a prisma: 2.30.2 -> 3.1.1 2021-09-25 21:47:30 +09:00
Julius de Bruijn
3bc4a574db prisma: add pimeys as maintainer 2021-09-25 20:38:40 +09:00
Pamplemousse
47557e2984 nodesPackages.prisma: #135934 follow-up corrections 2021-09-25 20:38:40 +09:00
Pamplemousse
d047d336d6 prisma-engines: #135934 follow-up corrections 2021-09-25 20:38:40 +09:00
Pamplemousse
d61ba9863c nodePackages.prisma: init at 2.30.2 2021-09-09 20:42:53 +09:00