generated from UniDash-Linux/pkg-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nix
executable file
·74 lines (68 loc) · 2.19 KB
/
package.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
stdenv,
lib,
makeWrapper,
mpv,
yt-dlp,
rofi-wayland,
}:
############
# Packages #
#######################################################################
let
iconPath = "icon.png";
name = "Rofi Beats";
comment = "Rofi music player";
in
# ----------------------------------------------------------------- #
stdenv.mkDerivation (finalAttrs: {
pname = "rofi-beats";
version = "24.05-06-06-2024";
# ----------------------------------------------------------------- #
src = ./src;
# ----------------------------------------------------------------- #
nativeBuildInputs = [ makeWrapper ];
# ----------------------------------------------------------------- #
prePatch = ''
patchShebangs . ;
substituteInPlace rofi-beats \
--replace-fail "play-music \"" "${placeholder "out"}/bin/play-music \""
'';
# ----------------------------------------------------------------- #
installPhase = ''
runHook preInstall
mkdir -p $out/bin/ $out/Applications/
cp -r ./ $out/Applications/${finalAttrs.pname}/
install -Dm 755 ${finalAttrs.pname} $out/bin/${finalAttrs.pname}
install -Dm 755 play-music $out/bin/play-music
echo -e "[Desktop Entry]\n" \
"Type=Application\n" \
"Name=${name}\n" \
"Comment=${comment}\n" \
"Icon=$out/Applications/${finalAttrs.pname}/${iconPath}\n" \
"Exec=$out/bin/${finalAttrs.pname}\n" \
"Terminal=false" > ./${finalAttrs.pname}.desktop
install -D ${finalAttrs.pname}.desktop \
$out/share/applications/${finalAttrs.pname}.desktop
runHook postInstall
'';
# ----------------------------------------------------------------- #
postFixup = ''
wrapProgram $out/bin/play-music \
--prefix PATH : ${lib.makeBinPath [
mpv
yt-dlp
rofi-wayland
]}
'';
# ----------------------------------------------------------------- #
meta = {
description = comment;
homepage = "https://github.com/NixAchu/rofi-beats";
maintainers = with lib.maintainers; [ pikatsuto ];
licenses = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
mainProgram = finalAttrs.pname;
};
#######################################################################
})