speakersafetyd: use DESTDIR variable in installFlags attribute

This commit is contained in:
Jasi
2025-06-26 16:54:52 -04:00
parent b0104a2210
commit e8e99e3595
+6 -5
View File
@@ -35,11 +35,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
'';
installFlags = [
"BINDIR=$(out)/bin"
"UNITDIR=$(out)/lib/systemd/system"
"UDEVDIR=$(out)/lib/udev/rules.d"
"SHAREDIR=$(out)/share"
"TMPFILESDIR=$(out)/lib/tmpfiles.d"
"DESTDIR=$(out)"
"BINDIR=bin"
"UNITDIR=lib/systemd/system"
"UDEVDIR=lib/udev/rules.d"
"SHAREDIR=share"
"TMPFILESDIR=lib/tmpfiles.d"
];
dontCargoInstall = true;