2023-06-28 19:48:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, substituteAll, pkg-config, gnused, autoreconfHook
|
2019-03-14 19:46:22 +00:00
|
|
|
, gtk-doc, acl, systemd, glib, libatasmart, polkit, coreutils, bash, which
|
2020-11-24 15:29:28 +00:00
|
|
|
, expat, libxslt, docbook_xsl, util-linux, mdadm, libgudev, libblockdev, parted
|
2022-04-03 03:56:47 +00:00
|
|
|
, gobject-introspection, docbook_xml_dtd_412, docbook_xml_dtd_43
|
2018-10-11 15:57:50 +00:00
|
|
|
, xfsprogs, f2fs-tools, dosfstools, e2fsprogs, btrfs-progs, exfat, nilfs-utils, ntfs3g
|
2022-04-03 03:56:47 +00:00
|
|
|
, nixosTests
|
2013-04-01 16:12:32 +00:00
|
|
|
}:
|
|
|
|
|
2019-07-29 21:38:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "udisks";
|
2023-09-20 01:26:29 +00:00
|
|
|
version = "2.10.1";
|
2013-04-01 16:12:32 +00:00
|
|
|
|
2018-05-29 22:19:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "storaged-project";
|
|
|
|
repo = "udisks";
|
2019-07-29 21:38:10 +00:00
|
|
|
rev = "${pname}-${version}";
|
2023-09-20 01:26:29 +00:00
|
|
|
sha256 = "sha256-L8jr1+SJWsCizkPXC8VKDy2eVa7/FpqdB8SkBYq6vwc=";
|
2013-04-01 16:12:32 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
outputs = [ "out" "man" "dev" ] ++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "devdoc";
|
2015-07-26 11:43:49 +00:00
|
|
|
|
2018-05-29 22:19:46 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
bash = "${bash}/bin/bash";
|
|
|
|
false = "${coreutils}/bin/false";
|
|
|
|
mdadm = "${mdadm}/bin/mdadm";
|
2022-03-13 00:09:56 +00:00
|
|
|
mkswap = "${util-linux}/bin/mkswap";
|
2018-05-29 22:19:46 +00:00
|
|
|
sed = "${gnused}/bin/sed";
|
|
|
|
sh = "${bash}/bin/sh";
|
|
|
|
sleep = "${coreutils}/bin/sleep";
|
2022-03-13 00:09:56 +00:00
|
|
|
swapon = "${util-linux}/bin/swapon";
|
2018-05-29 22:19:46 +00:00
|
|
|
true = "${coreutils}/bin/true";
|
|
|
|
})
|
|
|
|
(substituteAll {
|
|
|
|
src = ./force-path.patch;
|
2021-01-15 14:45:37 +00:00
|
|
|
path = lib.makeBinPath [
|
2019-07-29 21:38:10 +00:00
|
|
|
btrfs-progs coreutils dosfstools e2fsprogs exfat f2fs-tools nilfs-utils
|
2020-11-24 15:29:28 +00:00
|
|
|
xfsprogs ntfs3g parted util-linux
|
2019-07-29 21:38:10 +00:00
|
|
|
];
|
2018-05-29 22:19:46 +00:00
|
|
|
})
|
|
|
|
];
|
2013-04-02 11:37:32 +00:00
|
|
|
|
2022-04-03 03:56:47 +00:00
|
|
|
strictDeps = true;
|
|
|
|
# pkg-config had to be in both to find gtk-doc and gobject-introspection
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
2018-05-29 22:19:46 +00:00
|
|
|
nativeBuildInputs = [
|
2022-04-03 03:56:47 +00:00
|
|
|
autoreconfHook which gobject-introspection pkg-config
|
2021-12-29 18:48:16 +00:00
|
|
|
gtk-doc libxslt docbook_xml_dtd_412 docbook_xml_dtd_43 docbook_xsl
|
2018-05-29 22:19:46 +00:00
|
|
|
];
|
2013-04-01 16:12:32 +00:00
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
|
2018-06-25 14:25:25 +00:00
|
|
|
substituteInPlace udisks/udisksclient.c \
|
|
|
|
--replace 'defined( __GNUC_PREREQ)' 1 \
|
|
|
|
--replace '__GNUC_PREREQ(4,6)' 1
|
|
|
|
'';
|
|
|
|
|
2018-05-29 22:19:46 +00:00
|
|
|
buildInputs = [
|
2021-12-29 18:48:16 +00:00
|
|
|
expat libgudev libblockdev acl systemd glib libatasmart polkit util-linux
|
2018-05-29 22:19:46 +00:00
|
|
|
];
|
2013-04-01 16:12:32 +00:00
|
|
|
|
2019-03-14 19:46:22 +00:00
|
|
|
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
|
2013-04-01 16:12:32 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
2021-01-15 14:45:37 +00:00
|
|
|
(lib.enableFeature (stdenv.buildPlatform == stdenv.hostPlatform) "gtk-doc")
|
2022-04-03 03:57:44 +00:00
|
|
|
"--sysconfdir=/etc"
|
2013-04-01 16:12:32 +00:00
|
|
|
"--localstatedir=/var"
|
2014-03-13 20:44:51 +00:00
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2013-04-01 16:12:32 +00:00
|
|
|
"--with-udevdir=$(out)/lib/udev"
|
2019-07-29 21:38:10 +00:00
|
|
|
"--with-tmpfilesdir=no"
|
2013-04-01 16:12:32 +00:00
|
|
|
];
|
|
|
|
|
2018-02-24 16:28:41 +00:00
|
|
|
makeFlags = [
|
|
|
|
"INTROSPECTION_GIRDIR=$(dev)/share/gir-1.0"
|
|
|
|
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
|
|
|
|
];
|
|
|
|
|
2022-04-03 03:57:44 +00:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=${placeholder "out"}/etc"
|
|
|
|
];
|
|
|
|
|
2019-07-29 21:38:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
2018-04-25 03:20:18 +00:00
|
|
|
|
2023-07-23 02:46:13 +00:00
|
|
|
passthru = {
|
|
|
|
inherit libblockdev;
|
|
|
|
tests.vm = nixosTests.udisks2;
|
|
|
|
};
|
2022-04-03 03:56:47 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-29 22:19:46 +00:00
|
|
|
description = "A daemon, tools and libraries to access and manipulate disks, storage devices and technologies";
|
2019-07-29 21:38:10 +00:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/udisks/";
|
|
|
|
license = with licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the tools & daemon
|
2022-03-13 00:13:27 +00:00
|
|
|
maintainers = teams.freedesktop.members ++ (with maintainers; [ johnazoidberg ]);
|
2018-05-29 22:19:46 +00:00
|
|
|
platforms = platforms.linux;
|
2013-04-01 16:12:32 +00:00
|
|
|
};
|
|
|
|
}
|