From 9b446c03e80cb31ae2a31070a9a9c12e6a0c6bd2 Mon Sep 17 00:00:00 2001 From: Lucas Rooyakkers Date: Tue, 2 Oct 2018 01:47:51 -0400 Subject: [PATCH 1/2] Add support for Apple's M4V format --- src/info/filetype.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info/filetype.rs b/src/info/filetype.rs index e1d3b2d..5d5378f 100644 --- a/src/info/filetype.rs +++ b/src/info/filetype.rs @@ -37,7 +37,7 @@ impl FileExtensions { fn is_video(&self, file: &File) -> bool { file.extension_is_one_of( &[ - "avi", "flv", "m2v", "mkv", "mov", "mp4", "mpeg", + "avi", "flv", "m2v", "m4v", "mkv", "mov", "mp4", "mpeg", "mpg", "ogm", "ogv", "vob", "wmv", "webm", "m2ts", ]) } From e4b46ffe01f712de0428fb48d0de2b2911937cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Merlin=20G=C3=B6ttlinger?= Date: Fri, 5 Oct 2018 11:39:38 +0200 Subject: [PATCH 2/2] Documented nix availability --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e86c5f9..7295929 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,11 @@ or: [Formulae](https://github.com/Homebrew/homebrew-core/blob/master/Formula/exa.rb) +### Nix + +`exa` is also installable through [the derivation](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/exa/default.nix) using the [nix package manager](https://nixos.org/nix/) by running: + + nix-env -i exa ## Testing with Vagrant