nixpkgs/pkgs/development/libraries/libndctl/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook
, 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
}:
stdenv.mkDerivation rec {
pname = "libndctl";
2020-10-25 18:16:44 +00:00
version = "70.1";
2018-05-30 00:31:16 +01:00
src = fetchFromGitHub {
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
};
outputs = [ "out" "lib" "man" "dev" ];
2018-05-30 00:31:16 +01:00
nativeBuildInputs =
[ autoreconfHook asciidoctor pkg-config xmlto docbook_xml_dtd_45 docbook_xsl libxslt
which
];
2018-05-30 00:31:16 +01:00
buildInputs =
2020-11-24 15:29:28 +00:00
[ json_c kmod util-linux udev keyutils
];
2018-05-30 00:31:16 +01:00
configureFlags =
[ "--without-bash"
"--without-systemd"
];
patchPhase = ''
2018-08-07 13:55:32 +01:00
patchShebangs test
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-05-30 00:31:16 +01:00
echo "m4_define([GIT_VERSION], [${version}])" > version.m4;
'';
meta = with lib; {
description = "Tools for managing the Linux Non-Volatile Memory Device sub-system";
homepage = "https://github.com/pmem/ndctl";
license = licenses.lgpl21;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
2018-05-30 00:31:16 +01:00
};
}