nixpkgs/pkgs/applications/misc/feedbackd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

107 lines
2.1 KiB
Nix
Raw Normal View History

2020-12-26 22:03:24 +00:00
{ lib
, stdenv
, fetchFromGitLab
, docbook-xsl-nons
, docutils
, gi-docgen
, gobject-introspection
, gtk-doc
, libxslt
2020-12-26 22:03:24 +00:00
, meson
, ninja
, pkg-config
, vala
, wrapGAppsHook3
2020-12-26 22:03:24 +00:00
, glib
, gsound
, json-glib
, libgudev
, dbus
2020-12-26 22:03:24 +00:00
}:
2021-09-12 02:44:44 +00:00
let
themes = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
repo = "feedbackd-device-themes";
2023-03-05 10:06:57 +00:00
rev = "v0.1.0";
sha256 = "sha256-YK9fJ3awmhf1FAhdz95T/POivSO93jsNApm+u4OOZ80=";
2021-09-12 02:44:44 +00:00
};
in
2020-12-26 22:03:24 +00:00
stdenv.mkDerivation rec {
pname = "feedbackd";
version = "0.2.0";
outputs = [ "out" "dev" "devdoc" ];
2020-12-26 22:03:24 +00:00
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
repo = "feedbackd";
rev = "v${version}";
hash = "sha256-l5rfMx3ElW25A5WVqzfKBp57ebaNC9msqV7mvnwv10s=";
fetchSubmodules = true;
2020-12-26 22:03:24 +00:00
};
depsBuildBuild = [
pkg-config
];
2020-12-26 22:03:24 +00:00
nativeBuildInputs = [
docbook-xsl-nons
docutils # for rst2man
gi-docgen
gobject-introspection
gtk-doc
libxslt
2020-12-26 22:03:24 +00:00
meson
ninja
pkg-config
vala
wrapGAppsHook3
2020-12-26 22:03:24 +00:00
];
buildInputs = [
glib
gsound
json-glib
libgudev
2020-12-26 22:03:24 +00:00
];
mesonFlags = [
"-Dgtk_doc=true"
"-Dman=true"
];
nativeCheckInputs = [
dbus
];
doCheck = true;
2021-05-01 06:03:42 +00:00
postInstall = ''
mkdir -p $out/lib/udev/rules.d
sed "s|/usr/libexec/|$out/libexec/|" < $src/debian/feedbackd.udev > $out/lib/udev/rules.d/90-feedbackd.rules
2021-09-12 02:44:44 +00:00
cp ${themes}/data/* $out/share/feedbackd/themes/
2021-05-01 06:03:42 +00:00
'';
postFixup = ''
# Move developer documentation to devdoc output.
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
if [[ -d "$out/share/doc" ]]; then
find -L "$out/share/doc" -type f -regex '.*\.devhelp2?' -print0 \
| while IFS= read -r -d ''' file; do
moveToOutput "$(dirname "''${file/"$out/"/}")" "$devdoc"
done
fi
'';
2020-12-26 22:03:24 +00:00
meta = with lib; {
description = "Daemon to provide haptic (and later more) feedback on events";
2020-12-26 22:03:24 +00:00
homepage = "https://source.puri.sm/Librem5/feedbackd";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pacman99 ];
2020-12-26 22:03:24 +00:00
platforms = platforms.linux;
};
}