makeDesktopItem: add StartupNotify key

This commit is contained in:
Thomas Tuegel 2015-12-12 17:25:56 -06:00
parent e0f6dc36c9
commit 623a117bdd

View file

@ -9,6 +9,7 @@
, genericName
, mimeType ? ""
, categories ? "Application;Other;"
, startupNotify ? null
}:
stdenv.mkDerivation {
@ -26,6 +27,8 @@ stdenv.mkDerivation {
GenericName=${genericName}
MimeType=${mimeType}
Categories=${categories}
EOF
${if startupNotify == null then ''EOF'' else ''
StartupNotify=${startupNotify}
EOF''}
'';
}