about summary refs log tree commit diff
path: root/pkgs/development/libraries/libndctl
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-05-30 01:31:16 +0200
committerFlorian Klink <flokli@flokli.de>2018-06-11 18:13:31 +0200
commit1034ef2193bbdb5624341a92fc923fa20142e3a5 (patch)
treec176cf10f0bab976488e44c4945a2c9eaab95b7f /pkgs/development/libraries/libndctl
parentf78ca4715b39c0c4924451d1e5bf9e497604a77f (diff)
downloadnixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar.gz
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar.bz2
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar.lz
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar.xz
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.tar.zst
nixlib-1034ef2193bbdb5624341a92fc923fa20142e3a5.zip
libndctl: init at 60.3
Diffstat (limited to 'pkgs/development/libraries/libndctl')
-rw-r--r--pkgs/development/libraries/libndctl/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libndctl/default.nix b/pkgs/development/libraries/libndctl/default.nix
new file mode 100644
index 000000000000..fa48fc390aa0
--- /dev/null
+++ b/pkgs/development/libraries/libndctl/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, asciidoc, docbook_xsl, docbook_xml_dtd_45, libxslt, xmlto, pkgconfig, json_c, kmod, which, systemd, utillinux
+}:
+
+let
+  version = "60.3";
+in stdenv.mkDerivation rec {
+  name = "libndctl-${version}";
+
+  src = fetchFromGitHub {
+    owner = "pmem";
+    repo = "ndctl";
+    rev = "v${version}";
+    sha256 = "0w19yh6f9skf5zy4bhdjlrn3wdx5xx9cq8j6h04cmw4nla6zj9ar";
+  };
+
+  outputs = [ "out" "man" "dev" ];
+
+  nativeBuildInputs = [
+    autoreconfHook asciidoc pkgconfig xmlto docbook_xml_dtd_45 docbook_xsl libxslt
+  ];
+
+  buildInputs = [
+    json_c kmod systemd utillinux
+  ];
+
+  preAutoreconf = ''
+    substituteInPlace configure.ac --replace "which" "${which}/bin/which"
+    substituteInPlace git-version --replace /bin/bash ${stdenv.shell}
+    substituteInPlace git-version-gen --replace /bin/sh ${stdenv.shell}
+    echo "m4_define([GIT_VERSION], [${version}])" > version.m4;
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel";
+    homepage = https://github.com/pmem/ndctl;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [];
+    platforms = platforms.linux;
+  };
+}