liburing: format with nixfmt

This commit is contained in:
Nick Cao
2024-06-16 10:47:22 -04:00
parent 446e138496
commit 67dcd62bab
+32 -18
View File
@@ -1,12 +1,16 @@
{ lib, stdenv, fetchgit }:
{
lib,
stdenv,
fetchgit,
}:
stdenv.mkDerivation rec {
pname = "liburing";
version = "2.5";
src = fetchgit {
url = "http://git.kernel.dk/${pname}";
rev = "liburing-${version}";
url = "http://git.kernel.dk/${pname}";
rev = "liburing-${version}";
sha256 = "sha256-hPyEZ0P1rfos53OCNd2OYFiqmv6TgpWaj5/xPLccCvM=";
};
@@ -20,25 +24,35 @@ stdenv.mkDerivation rec {
];
# Doesn't recognize platform flags
configurePlatforms = [];
configurePlatforms = [ ];
outputs = [ "out" "bin" "dev" "man" ];
outputs = [
"out"
"bin"
"dev"
"man"
];
postInstall = ''
# Copy the examples into $bin. Most reverse dependency of this package should
# reference only the $out output
mkdir -p $bin/bin
cp ./examples/io_uring-cp examples/io_uring-test $bin/bin
cp ./examples/link-cp $bin/bin/io_uring-link-cp
'' + lib.optionalString stdenv.hostPlatform.isGnu ''
cp ./examples/ucontext-cp $bin/bin/io_uring-ucontext-cp
'';
postInstall =
''
# Copy the examples into $bin. Most reverse dependency of this package should
# reference only the $out output
mkdir -p $bin/bin
cp ./examples/io_uring-cp examples/io_uring-test $bin/bin
cp ./examples/link-cp $bin/bin/io_uring-link-cp
''
+ lib.optionalString stdenv.hostPlatform.isGnu ''
cp ./examples/ucontext-cp $bin/bin/io_uring-ucontext-cp
'';
meta = with lib; {
description = "Userspace library for the Linux io_uring API";
homepage = "https://git.kernel.dk/cgit/liburing/";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice nickcao ];
homepage = "https://git.kernel.dk/cgit/liburing/";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [
thoughtpolice
nickcao
];
};
}