nixpkgs/pkgs/by-name/di/dissent/package.nix

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

66 lines
1.8 KiB
Nix
Raw Normal View History

2022-11-08 08:58:58 +00:00
{ buildGoModule
, fetchFromGitHub
, gobject-introspection
2023-02-02 10:06:59 +00:00
, gst_all_1
2022-11-08 08:58:58 +00:00
, lib
, libadwaita
2023-02-02 10:06:59 +00:00
, libcanberra-gtk3
2022-11-08 08:58:58 +00:00
, pkg-config
2023-02-02 10:06:59 +00:00
, sound-theme-freedesktop
2024-09-10 13:18:37 +01:00
, libspelling
, gtksourceview5
, wrapGAppsHook4
2022-11-08 08:58:58 +00:00
}:
buildGoModule rec {
pname = "dissent";
2024-09-10 13:18:37 +01:00
version = "0.0.30";
2022-11-08 08:58:58 +00:00
src = fetchFromGitHub {
owner = "diamondburned";
repo = "dissent";
2022-11-08 08:58:58 +00:00
rev = "v${version}";
2024-09-10 13:18:37 +01:00
hash = "sha256-wBDN9eUPOr9skTTgA0ea50Byta3qVr1loRrfMWhnxP8=";
2022-11-08 08:58:58 +00:00
};
nativeBuildInputs = [
gobject-introspection
pkg-config
wrapGAppsHook4
2022-11-08 08:58:58 +00:00
];
buildInputs = [
2023-02-02 10:06:59 +00:00
# Optional according to upstream but required for sound and video
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
gst_all_1.gstreamer
2024-06-15 07:22:00 +01:00
libadwaita
2023-02-02 10:06:59 +00:00
libcanberra-gtk3
sound-theme-freedesktop
2024-09-10 13:18:37 +01:00
libspelling
gtksourceview5
2022-11-08 08:58:58 +00:00
];
postInstall = ''
2024-09-18 08:33:55 +01:00
substituteInPlace nix/so.libdb.dissent.service \
--replace-warn "/usr/bin/dissent" "$out/bin/dissent"
install -D -m 444 -t $out/share/applications nix/so.libdb.dissent.desktop
2024-06-15 07:22:00 +01:00
install -D -m 444 -t $out/share/icons/hicolor/scalable/apps internal/icons/hicolor/scalable/apps/so.libdb.dissent.svg
install -D -m 444 -t $out/share/icons/hicolor/symbolic/apps internal/icons/symbolic/apps/so.libdb.dissent-symbolic.svg
install -D -m 444 -t $out/share/metainfo so.libdb.dissent.metainfo.xml
install -D -m 444 -t $out/share/dbus-1/services nix/so.libdb.dissent.service
'';
2024-09-10 13:18:37 +01:00
vendorHash = "sha256-TXqdO+DjnDD/+zwm3gK3+sxMTEVSHuceKz4ZJVH5Y34=";
2022-11-08 08:58:58 +00:00
meta = with lib; {
2024-06-15 07:22:00 +01:00
description = "A third-party Discord client designed for a smooth, native experience (formerly gtkcord4)";
homepage = "https://github.com/diamondburned/dissent";
2024-06-15 07:22:00 +01:00
license = with licenses; [ gpl3Plus cc0 ];
mainProgram = "dissent";
2023-04-29 10:26:44 +01:00
maintainers = with maintainers; [ hmenke urandom aleksana ];
2022-11-08 08:58:58 +00:00
};
}