generated from UniDash-Linux/pkg-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nix
86 lines (80 loc) · 2.15 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
75
76
77
78
79
80
81
82
83
84
85
86
{
stdenv,
lib,
makeWrapper,
gnat14,
gnumake,
python311,
nodejs,
bottom,
ripgrep,
lazygit,
wl-clipboard,
nil,
neovim,
...
}:
############
# Packages #
#######################################################################
let
iconPath = "icon.png";
name = "IDE";
comment = "custom lvim launcher";
in
# ----------------------------------------------------------------- #
stdenv.mkDerivation (finalAttrs: {
pname = "ide";
version = "24.05-07-06-2024";
src = ./src;
# ----------------------------------------------------------------- #
nativeBuildInputs = [ makeWrapper ];
prePatch = ''
patchShebangs . ;
substituteInPlace ide \
--replace-fail "/Applications/ide/nvim" \
"${placeholder "out"}/Applications/ide/nvim"
'';
# ----------------------------------------------------------------- #
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 [
gnat14
gnumake
python311
nodejs
bottom
ripgrep
lazygit
wl-clipboard
nil
neovim
]}
'';
# ----------------------------------------------------------------- #
meta = {
description = comment;
maintainers = with lib.maintainers; [ pikatsuto ];
licenses = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
mainProgram = finalAttrs.pname;
};
#######################################################################
})