Commit Graph

64 Commits

Author SHA1 Message Date
R. Ryantm
ce944edd26 rdma-core: 50.0 -> 51.0 2024-04-01 15:43:36 +00:00
R. Ryantm
6b47b1113f rdma-core: 49.1 -> 50.0 2024-01-28 20:40:01 +00:00
R. Ryantm
bb404b0e99 rdma-core: 49.0 -> 49.1 2024-01-23 17:42:02 +00:00
Markus Kowalewski
4472930066 rdma-core: 48.0 -> 49.0 2023-11-19 14:29:51 +01:00
Markus Kowalewski
476626b622 rdma-core: split outputs -> out, man, dev 2023-09-30 21:10:53 +02:00
Markus Kowalewski
4e0e370d30 rdma-core: 47.0 -> 48.0 2023-09-18 21:57:24 +02:00
Markus Kowalewski
1ba6bf3758
rdma-core: 46.1 -> 47.0 2023-08-21 22:08:59 +02:00
Pol Dellaiera
dfcd6a0c0d
rdma-core: use finalAttrs pattern 2023-07-29 11:03:16 +02:00
R. Ryantm
a428fcf79f rdma-core: 46.0 -> 46.1 2023-07-29 04:50:32 +00:00
Markus Kowalewski
9817807f84
rdma-core: 45.0 -> 46.0 2023-05-16 13:49:58 +02:00
R. Ryantm
9a5ebd8eaa rdma-core: 44.0 -> 45.0 2023-03-15 11:49:21 +00:00
R. Ryantm
c7990a5139 rdma-core: 43.0 -> 44.0 2023-01-12 10:18:51 +00:00
R. Ryantm
a4e14d92d3 rdma-core: 42.0 -> 43.0 2022-10-24 01:46:21 +00:00
R. Ryantm
1f0e19b638 rdma-core: 41.0 -> 42.0 2022-08-19 07:14:50 +00:00
R. Ryantm
3989d02f00 rdma-core: 40.0 -> 41.0 2022-07-29 20:24:02 +00:00
Markus Kowalewski
76bbb97fe5
rdma-core: 39.1 -> 40.0 2022-04-24 23:27:36 +02:00
Markus Kowalewski
51fe8bff0f
rdma-core: 39.0 -> 39.1 2022-03-30 23:24:29 +02:00
Jacek Galowicz
20392d90ca rdma-core: Fix pkg-config files 2022-03-30 22:32:13 +02:00
R. Ryantm
22894ee2e0 rdma-core: 38.1 -> 39.0 2022-01-28 06:56:46 +00:00
Markus Kowalewski
442dc01aac
rdma-core: 38.0 -> 38.1 2022-01-13 11:20:40 +01:00
Nick Cao
3d06d15559
rdma-core: fix cross compilation, set strictDeps 2021-12-24 15:56:30 +08:00
Markus Kowalewski
37af67a84a
rdma-core: 37.1 -> 38.0 2021-11-28 20:09:52 +01:00
Markus Kowalewski
ccd348aeb8
rdma-core: 37.0 -> 37.1 2021-10-26 16:30:45 +02:00
Markus Kowalewski
9b31a0eeb0
rdma-core: 36.0 -> 37.0 2021-10-04 22:28:20 +02:00
Markus Kowalewski
6ef2459696
rdma-core: 35.0 -> 36.0 2021-08-02 00:12:34 +02:00
Markus Kowalewski
8d397799b9
rdma-core: 34.0 -> 35.0 2021-05-19 13:40:30 +02:00
Jan Tojnar
c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
Sandro Jäckel
9378fdf87e
iproute: deprecate alias 2021-04-04 01:43:46 +02:00
rnhmjoj
61b7cab481
treewide: use perl.withPackages when possible
Since 03eaa48 added perl.withPackages, there is a canonical way to
create a perl interpreter from a list of libraries, for use in script
shebangs or generic build inputs. This method is declarative (what we
are doing is clear), produces short shebangs[1] and needs not to wrap
existing scripts.

Unfortunately there are a few exceptions that I've found:

  1. Scripts that are calling perl with the -T switch. This makes perl
  ignore PERL5LIB, which is what perl.withPackages is using to inform
  the interpreter of the library paths.

  2. Perl packages that depends on libraries in their own path. This
  is not possible because perl.withPackages works at build time. The
  workaround is to add `-I $out/${perl.libPrefix}` to the shebang.

In all other cases I propose to switch to perl.withPackages.

[1]: https://lwn.net/Articles/779997/
2021-03-31 21:35:37 +02:00
R. RyanTM
aa84c57e7f rdma-core: 33.1 -> 34.0 2021-03-13 12:14:05 +00:00
ajs124
8cb59eb130 rdma-core: python2 -> python3 2021-03-03 00:27:44 +01:00
Markus Kowalewski
a2498eabe2
rdma-core: 33.0 -> 33.1 2021-01-28 18:45:55 +01:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -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
Markus Kowalewski
b5be160c1d
rdma-core: 31.2 -> 33.0 2021-01-01 12:14:18 +01:00
R. RyanTM
b87b2620d7 rdma-core: 31.1 -> 31.2 2020-11-26 18:43:23 +00:00
Markus Kowalewski
545456ddca
rdma-core: 31.0 -> 31.1 2020-11-08 15:10:08 +01:00
R. RyanTM
f061b8b64f rdma-core: 30.0 -> 31.0 2020-08-24 04:53:57 +00:00
Markus Kowalewski
86de0be383
rdma-core: 29.0 -> 30.0 2020-06-26 00:11:52 +02:00
R. RyanTM
d6d2b1ee6d rdma-core: 28.0 -> 29.0 2020-04-15 07:31:00 +00:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Markus Kowalewski
505bccfdc7
rdma-core: 27.0 -> 28.0
rxe_cfg has been removed, is replaced by
'rdma' from iproute package.
2020-02-28 10:09:05 +01:00
R. RyanTM
3923fbd34b rdma-core: 26.1 -> 27.0 2019-12-24 07:34:36 -08:00
Markus Kowalewski
23059de767
rdma-core: 26.0 -> 26.1 2019-12-07 00:19:49 +01:00
R. RyanTM
3687cd58b4 rdma-core: 25.0 -> 26.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rdma-core/versions
2019-10-08 11:10:17 -07:00
volth
c814d72b51 treewide: name -> pname 2019-08-17 10:54:38 +00:00
Markus Kowalewski
9c22baeeed
rdma-core: 24.0 -> 25.0 2019-08-09 13:36:53 +02:00
R. RyanTM
f6e96c3be4 rdma-core: 23.1 -> 24.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rdma-core/versions
2019-06-02 19:01:01 -07:00
R. RyanTM
6ac02de3c3 rdma-core: 23 -> 23.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rdma-core/versions
2019-05-24 00:23:13 -07:00
R. RyanTM
3e36c91289 rdma-core: 22.1 -> 23
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rdma-core/versions
2019-04-02 16:23:56 -07:00