Merge pull request #5963 from ttuegel/firefox-mime

firefox: set mime-type in desktop entry
This commit is contained in:
Eelco Dolstra 2015-01-26 12:10:35 +01:00
commit fa4d1e1b0a

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;