9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, substituteAll, autoreconfHook, pkg-config, gtk-doc
|
|
, docbook_xml_dtd_43, python3, gobject-introspection, glib, udev, kmod, parted
|
|
, cryptsetup, lvm2, dmraid, util-linux, libbytesize, libndctl, nss, volume_key
|
|
, libxslt, docbook_xsl, gptfdisk, libyaml, autoconf-archive
|
|
, thin-provisioning-tools, makeWrapper
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "libblockdev";
|
|
version = "2.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "storaged-project";
|
|
repo = "libblockdev";
|
|
rev = "${version}-1";
|
|
sha256 = "1gzwlwdv0jyb3lh2n016limy2ngfdsa05x7jvg9llf2ls672nq89";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
sgdisk = "${gptfdisk}/bin/sgdisk";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook pkg-config gtk-doc libxslt docbook_xsl docbook_xml_dtd_43
|
|
python3 gobject-introspection autoconf-archive makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
glib udev kmod parted gptfdisk cryptsetup lvm2 dmraid util-linux 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 = with licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the utils
|
|
maintainers = with maintainers; [ johnazoidberg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|