lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #146484 from NixOS/musl-liburing

authored by

Sandro and committed by
GitHub
67f4b15b 02e95c2f

+5 -6
+5 -6
pkgs/development/libraries/liburing/default.nix
··· 33 33 34 34 outputs = [ "out" "bin" "dev" "man" ]; 35 35 36 - postInstall = 37 - # Copy the examples into $bin. Most reverse dependency of this package should 38 - # reference only the $out output 39 - '' 36 + postInstall = '' 37 + # Copy the examples into $bin. Most reverse dependency of this package should 38 + # reference only the $out output 40 39 mkdir -p $bin/bin 41 40 cp ./examples/io_uring-cp examples/io_uring-test $bin/bin 42 41 cp ./examples/link-cp $bin/bin/io_uring-link-cp 42 + '' + lib.optionalString stdenv.hostPlatform.isGnu '' 43 43 cp ./examples/ucontext-cp $bin/bin/io_uring-ucontext-cp 44 - '' 45 - ; 44 + ''; 46 45 47 46 meta = with lib; { 48 47 description = "Userspace library for the Linux io_uring API";