2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
2021-05-18 11:12:28 +00:00
|
|
|
, asciidoc, pkg-config, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
|
2020-11-24 15:29:28 +00:00
|
|
|
, json_c, kmod, which, util-linux, udev, keyutils
|
2018-05-29 23:31:16 +00:00
|
|
|
}:
|
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libndctl";
|
2021-01-20 11:40:22 +00:00
|
|
|
version = "71.1";
|
2018-05-29 23:31:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-13 01:11:27 +00:00
|
|
|
owner = "pmem";
|
|
|
|
repo = "ndctl";
|
|
|
|
rev = "v${version}";
|
2021-01-20 11:40:22 +00:00
|
|
|
sha256 = "sha256-osux3DiKRh8ftHwyfFI+WSFx20+yJsg1nVx5nuoKJu4=";
|
2018-05-29 23:31:16 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
outputs = [ "out" "lib" "man" "dev" ];
|
2018-05-29 23:31:16 +00:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
nativeBuildInputs =
|
2021-05-18 11:12:28 +00:00
|
|
|
[ autoreconfHook asciidoc pkg-config xmlto docbook_xml_dtd_45 docbook_xsl libxslt
|
2019-03-20 20:37:02 +00:00
|
|
|
which
|
2018-11-13 01:11:27 +00:00
|
|
|
];
|
2018-05-29 23:31:16 +00:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
buildInputs =
|
2020-11-24 15:29:28 +00:00
|
|
|
[ json_c kmod util-linux udev keyutils
|
2018-11-13 01:11:27 +00:00
|
|
|
];
|
2018-05-29 23:31:16 +00:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--without-bash"
|
|
|
|
"--without-systemd"
|
2021-05-18 11:12:28 +00:00
|
|
|
"--disable-asciidoctor" # depends on ruby 2.7, use asciidoc instead
|
2018-11-13 01:11:27 +00:00
|
|
|
];
|
2018-07-06 03:12:46 +00:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
patchPhase = ''
|
2018-08-07 12:55:32 +00:00
|
|
|
patchShebangs test
|
2018-11-13 01:11:27 +00:00
|
|
|
|
2018-05-29 23:31:16 +00:00
|
|
|
substituteInPlace git-version --replace /bin/bash ${stdenv.shell}
|
|
|
|
substituteInPlace git-version-gen --replace /bin/sh ${stdenv.shell}
|
2018-11-13 01:11:27 +00:00
|
|
|
|
2018-05-29 23:31:16 +00:00
|
|
|
echo "m4_define([GIT_VERSION], [${version}])" > version.m4;
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-11-13 01:11:27 +00:00
|
|
|
description = "Tools for managing the Linux Non-Volatile Memory Device sub-system";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/pmem/ndctl";
|
2018-11-13 01:11:27 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
platforms = platforms.linux;
|
2018-05-29 23:31:16 +00:00
|
|
|
};
|
|
|
|
}
|