firefox: set mime-type in desktop entry

This commit is contained in:
Thomas Tuegel 2015-01-25 14:35:22 -06:00
parent 8408136da7
commit 3c15d2aa0d

View file

@ -15,6 +15,18 @@ stdenv.mkDerivation {
desktopName = desktopName;
genericName = "Web Browser";
categories = "Application;Network;WebBrowser;";
mimeType = stdenv.lib.concatStringsSep ";" [
"text/html"
"text/xml"
"application/xhtml+xml"
"x-scheme-handler/http"
"x-scheme-handler/https"
"x-scheme-handler/ftp"
"x-scheme-handler/mailto"
"x-scheme-handler/webcal"
"x-scheme-handler/about"
"x-scheme-handler/unknown"
];
};
buildInputs = [makeWrapper] ++ gst_plugins;