generated from UniDash-Linux/pkg-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nix
64 lines (59 loc) · 1.97 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
{
stdenv,
lib,
makeWrapper,
rofi-wayland,
freerdp,
}:
############
# Packages #
#######################################################################
let
iconPath = "icon.png";
name = "Rofi Virtual Machine";
comment = "Rofi virtual machine manager";
in
# ----------------------------------------------------------------- #
stdenv.mkDerivation (finalAttrs: {
pname = "rofi-vm";
version = "24.05-06-06-2024";
# ----------------------------------------------------------------- #
src = ./src;
# ----------------------------------------------------------------- #
nativeBuildInputs = [ makeWrapper ];
# ----------------------------------------------------------------- #
prePatch = ''
patchShebangs . ;
'';
# ----------------------------------------------------------------- #
installPhase = ''
runHook preInstall
mkdir -p $out/bin/ $out/Applications/
cp -r ./ $out/Applications/${finalAttrs.pname}/
install -Dm 755 ${finalAttrs.pname} $out/bin/${finalAttrs.pname}
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/${finalAttrs.pname} \
--prefix PATH : ${lib.makeBinPath [ rofi-wayland freerdp ]}
'';
# ----------------------------------------------------------------- #
meta = {
description = comment;
maintainers = with lib.maintainers; [ pikatsuto ];
licenses = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
mainProgram = finalAttrs.pname;
};
#######################################################################
})