Daniel Schaefer 2019-07-29 23:00:09 +02:00 committed by Frederik Rietdijk
parent f744758a74
commit 1e07296a7e

View File

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, substituteAll, autoreconfHook, pkgconfig, gtk-doc, libxslt, docbook_xsl
, docbook_xml_dtd_43, python3, gobject-introspection, glib, udev, kmod, parted, gptfdisk, libyaml
{ stdenv, fetchFromGitHub, substituteAll, autoreconfHook, pkgconfig, gtk-doc
, docbook_xml_dtd_43, python3, gobject-introspection, glib, udev, kmod, parted
, cryptsetup, lvm2, dmraid, utillinux, libbytesize, libndctl, nss, volume_key
, libxslt, docbook_xsl, gptfdisk, libyaml, autoconf-archive
, thin-provisioning-tools, makeWrapper
}:
let
version = "2.20";
in stdenv.mkDerivation rec {
name = "libblockdev-${version}";
stdenv.mkDerivation rec {
pname = "libblockdev";
version = "2.22";
src = fetchFromGitHub {
owner = "storaged-project";
repo = "libblockdev";
rev = "${version}-1";
sha256 = "13xy8vx2dnnxczpnwapchc5ncigcxb2fhpmrmglbpkjqmhn2zbdj";
sha256 = "03y4ps37wbi9p1136q0xzgshfnrjg4lgy8pgm1a3ihfcjnbwrbnq";
};
outputs = [ "out" "dev" "devdoc" ];
@ -29,18 +29,25 @@ in stdenv.mkDerivation rec {
'';
nativeBuildInputs = [
autoreconfHook pkgconfig gtk-doc libxslt docbook_xsl docbook_xml_dtd_43 python3 gobject-introspection
autoreconfHook pkgconfig gtk-doc libxslt docbook_xsl docbook_xml_dtd_43
python3 gobject-introspection autoconf-archive makeWrapper
];
buildInputs = [
glib udev kmod parted gptfdisk cryptsetup lvm2 dmraid utillinux libbytesize libndctl nss volume_key libyaml
glib udev kmod parted gptfdisk cryptsetup lvm2 dmraid utillinux libbytesize
libndctl nss volume_key libyaml
];
postInstall = ''
wrapProgram $out/bin/lvm-cache-stats --prefix PATH : \
${stdenv.lib.makeBinPath [ thin-provisioning-tools ]}
'';
meta = with stdenv.lib; {
description = "A library for manipulating block devices";
homepage = http://storaged.org/libblockdev/;
license = licenses.lgpl2Plus; # lgpl2Plus for the library, gpl2Plus for the utils
maintainers = with maintainers; [];
homepage = "http://storaged.org/libblockdev/";
license = with licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the utils
maintainers = with maintainers; [ johnazoidberg ];
platforms = platforms.linux;
};
}