2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
2021-01-19 06:50:56 +00:00
|
|
|
, asciidoctor, 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-30 00:31:16 +01:00
|
|
|
}:
|
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libndctl";
|
2020-10-25 18:16:44 +00:00
|
|
|
version = "70.1";
|
2018-05-30 00:31:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-13 01:11:27 +00:00
|
|
|
owner = "pmem";
|
|
|
|
repo = "ndctl";
|
|
|
|
rev = "v${version}";
|
2020-10-25 18:16:44 +00:00
|
|
|
sha256 = "09ymdibcr18vpmyf2n0xrnzgccfvr7iy3p2l5lbh7cgz7djyl5wq";
|
2018-05-30 00:31:16 +01:00
|
|
|
};
|
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
outputs = [ "out" "lib" "man" "dev" ];
|
2018-05-30 00:31:16 +01:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
nativeBuildInputs =
|
2021-01-19 06:50:56 +00:00
|
|
|
[ autoreconfHook asciidoctor 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-30 00:31:16 +01: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-30 00:31:16 +01:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--without-bash"
|
|
|
|
"--without-systemd"
|
|
|
|
];
|
2018-07-06 04:12:46 +01:00
|
|
|
|
2018-11-13 01:11:27 +00:00
|
|
|
patchPhase = ''
|
2018-08-07 13:55:32 +01:00
|
|
|
patchShebangs test
|
2018-11-13 01:11:27 +00:00
|
|
|
|
2018-05-30 00:31:16 +01: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-30 00:31:16 +01: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 02:11:51 +01: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-30 00:31:16 +01:00
|
|
|
};
|
|
|
|
}
|