mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
37 lines
739 B
Nix
37 lines
739 B
Nix
{stdenv}:
|
|
{ name
|
|
, type ? "Application"
|
|
, exec
|
|
, icon ? ""
|
|
, comment ? ""
|
|
, terminal ? "false"
|
|
, desktopName
|
|
, genericName
|
|
, mimeType ? ""
|
|
, categories ? "Application;Other;"
|
|
, startupNotify ? null
|
|
, extraEntries ? ""
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "${name}.desktop";
|
|
buildCommand = ''
|
|
mkdir -p $out/share/applications
|
|
cat > $out/share/applications/${name}.desktop <<EOF
|
|
[Desktop Entry]
|
|
Type=${type}
|
|
Exec=${exec}
|
|
Icon=${icon}
|
|
Comment=${comment}
|
|
Terminal=${terminal}
|
|
Name=${desktopName}
|
|
GenericName=${genericName}
|
|
MimeType=${mimeType}
|
|
Categories=${categories}
|
|
${extraEntries}
|
|
${if startupNotify == null then ''EOF'' else ''
|
|
StartupNotify=${startupNotify}
|
|
EOF''}
|
|
'';
|
|
}
|