mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
firefox: set mime-type in desktop entry
This commit is contained in:
parent
8408136da7
commit
3c15d2aa0d
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue