depot/pkgs/os-specific/linux/libnvme/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

75 lines
1.6 KiB
Nix

{ fetchFromGitHub
, bash
, json_c
, keyutils
, lib
, meson
, ninja
, openssl
, perl
, pkg-config
, python3
, stdenv
, swig
, systemd
# ImportError: cannot import name 'mlog' from 'mesonbuild'
, withDocs ? stdenv.hostPlatform.canExecute stdenv.buildPlatform
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libnvme";
version = "1.10";
outputs = [ "out" ] ++ lib.optionals withDocs [ "man" ];
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "libnvme";
rev = "v${finalAttrs.version}";
hash = "sha256-guNABLpDKdWDE79gxoNq0ukAUE7CnMw5QRXA3rl3Dk4=";
};
postPatch = ''
patchShebangs scripts
substituteInPlace test/sysfs/tree-diff.sh test/config/config-diff.sh \
--replace-fail /bin/bash ${bash}/bin/bash
'';
nativeBuildInputs = [
meson
ninja
perl # for kernel-doc
pkg-config
python3.pythonOnBuildForHost
swig
];
buildInputs = [
keyutils
json_c
openssl
systemd
python3
];
mesonFlags = [
"-Ddocs=man"
(lib.mesonBool "tests" finalAttrs.finalPackage.doCheck)
(lib.mesonBool "docs-build" withDocs)
];
preConfigure = ''
export KBUILD_BUILD_TIMESTAMP="$(date -u -d @$SOURCE_DATE_EPOCH)"
'';
# mocked ioctl conflicts with the musl one: https://github.com/NixOS/nixpkgs/pull/263768#issuecomment-1782877974
doCheck = !stdenv.hostPlatform.isMusl;
meta = with lib; {
description = "C Library for NVM Express on Linux";
homepage = "https://github.com/linux-nvme/libnvme";
maintainers = with maintainers; [ vifino ];
license = with licenses; [ lgpl21Plus ];
platforms = platforms.linux;
};
})