f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, gettext
|
|
, pkg-config
|
|
, jq
|
|
, wrapGAppsHook3
|
|
, glib
|
|
, libgnome-keyring
|
|
, gtk3
|
|
, alsa-lib
|
|
, pulseaudio
|
|
, libgudev
|
|
, libsecret
|
|
, runtimeShell
|
|
, dbus
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "startdde";
|
|
version = "6.0.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-2aPQaH78+J18a/SXA2i+gQ5iypsjNhcYaORGN2qkz7c=";
|
|
};
|
|
|
|
vendorHash = "sha256-Y81p3yPQayXbvyUI7N6PvFDO3hSU3SL0AuUKxvZkZNE=";
|
|
|
|
postPatch = ''
|
|
substituteInPlace display/manager.go \
|
|
--replace "/bin/bash" "${runtimeShell}"
|
|
|
|
substituteInPlace misc/systemd_task/dde-display-task-refresh-brightness.service \
|
|
--replace "/usr/bin/dbus-send" "${dbus}/bin/dbus-send"
|
|
|
|
substituteInPlace display/manager.go \
|
|
--replace "/usr/lib/deepin-daemon" "/run/current-system/sw/lib/deepin-daemon"
|
|
|
|
substituteInPlace misc/lightdm.conf --replace "/usr" "$out"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
pkg-config
|
|
jq
|
|
wrapGAppsHook3
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
libgnome-keyring
|
|
gtk3
|
|
alsa-lib
|
|
pulseaudio
|
|
libgudev
|
|
libsecret
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make GO_BUILD_FLAGS="$GOFLAGS"
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make install DESTDIR="$out" PREFIX="/"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Starter of deepin desktop environment";
|
|
homepage = "https://github.com/linuxdeepin/startdde";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.deepin.members;
|
|
};
|
|
}
|