-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nix
executable file
·70 lines (64 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
{
stdenv,
lib,
makeWrapper,
bash,
}:
############
# Packages #
#########################################################################
let
iconPath = "icon.png";
name = "Exemple Application";
comment = "Exemple Application";
in
# --------------------------------------------------------------------- #
stdenv.mkDerivation (finalAttrs: {
pname = "exemple";
version = "24.05-15-06-2024";
## ----------------------------------------------------------------- ##
src = ./src;
## ----------------------------------------------------------------- ##
nativeBuildInputs = [ makeWrapper ];
## ----------------------------------------------------------------- ##
prePatch = ''
patchShebangs . ;
substituteInPlace exemple \
--replace-fail "exemple-2" "${placeholder "out"}/bin/exemple-2"
'';
## ----------------------------------------------------------------- ##
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 exemple-2 $out/bin/exemple-2
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/exemple-2 \
--prefix PATH : ${lib.makeBinPath [
bash
]}
'';
## ----------------------------------------------------------------- ##
meta = {
description = comment;
homepage = "https://github.com/RevoluNix/pkgs-template/";
maintainers = with lib.maintainers; [ pikatsuto ];
licenses = lib.licenses.lgpl2;
platforms = lib.platforms.linux;
mainProgram = finalAttrs.pname;
};
#######################################################################
})