mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
libndctl: init at 60.3
This commit is contained in:
parent
f78ca4715b
commit
1034ef2193
40
pkgs/development/libraries/libndctl/default.nix
Normal file
40
pkgs/development/libraries/libndctl/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -10354,6 +10354,8 @@ with pkgs;
|
||||
|
||||
libmx = callPackage ../development/libraries/libmx { };
|
||||
|
||||
libndctl = callPackage ../development/libraries/libndctl { };
|
||||
|
||||
libnet = callPackage ../development/libraries/libnet { };
|
||||
|
||||
libnetfilter_conntrack = callPackage ../development/libraries/libnetfilter_conntrack { };
|
||||
|
Loading…
Reference in New Issue
Block a user