mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
54 lines
1.3 KiB
Nix
54 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.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-nvme";
|
|
repo = "nvme-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-8vxalIHA4DRQuI18PRmzrlyG1XHcbKPkZgVB5Yqq9EU=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|