Skip to content

Commit

Permalink
Merge pull request NixOS#315947 from rhelmot/freebsd-libcxxrt
Browse files Browse the repository at this point in the history
freebsd.libcxxrt: init
  • Loading branch information
Ericson2314 committed May 30, 2024
2 parents ebe5930 + 23f95cd commit faf2ccb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pkgs/os-specific/bsd/freebsd/pkgs/libcxxrt.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ mkDerivation, ... }:
# this package is quite different from stock libcxxrt.
# as of FreeBSD 14.0, it is vendored from APPROXIMATELY libcxxrt
# 5d8a15823a103bbc27f1bfdcf2b5aa008fab57dd, though the vendoring mechanism is
# extremely ad-hoc. Moreover, the build mechanism is totally custom, and adds
# symbol versions not specified on any version of libcxxrt.
mkDerivation {
pname = "libcxxrt";
path = "lib/libcxxrt";
extraPaths = [ "contrib/libcxxrt" ];
}

0 comments on commit faf2ccb

Please sign in to comment.