mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 04:03:04 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
libnvme,
|
|
json_c,
|
|
zlib,
|
|
python3Packages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nvme-cli";
|
|
version = "2.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-nvme";
|
|
repo = "nvme-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-LkFYkfHeBKC/0kr33DKu7oXxXrtfu1YcpuwzRRWsHpc=";
|
|
};
|
|
|
|
mesonFlags = [
|
|
"-Dversion-tag=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3Packages.nose2
|
|
];
|
|
buildInputs = [
|
|
libnvme
|
|
json_c
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage; # https://nvmexpress.org/
|
|
description = "NVM-Express user space tooling for Linux";
|
|
longDescription = ''
|
|
NVM-Express is a fast, scalable host controller interface designed to
|
|
address the needs for not only PCI Express based solid state drives, but
|
|
also NVMe-oF(over fabrics).
|
|
This nvme program is a user space utility to provide standards compliant
|
|
tooling for NVM-Express drives. It was made specifically for Linux as it
|
|
relies on the IOCTLs defined by the mainline kernel driver.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
mic92
|
|
vifino
|
|
];
|
|
mainProgram = "nvme";
|
|
};
|
|
}
|