summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/mkclean
diff options
context:
space:
mode:
authorChristopher A. Williamson <home@chrisaw.com>2019-05-12 21:43:28 +0100
committerLassulus <github@lassul.us>2019-05-13 05:43:28 +0900
commite6aaadf610e8de12edac969617a01df994f5d924 (patch)
tree9d7b4e850ae4f808603f767c39dc68b35bd17c1f /pkgs/applications/video/mkclean
parent3c37e94789a300361fc22f2e641dba610bbb9734 (diff)
mkclean: init at 0.8.10
Diffstat (limited to 'pkgs/applications/video/mkclean')
-rw-r--r--pkgs/applications/video/mkclean/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/video/mkclean/default.nix b/pkgs/applications/video/mkclean/default.nix
new file mode 100644
index 000000000000..4a3cbc81b35e
--- /dev/null
+++ b/pkgs/applications/video/mkclean/default.nix
@@ -0,0 +1,37 @@
+{ dos2unix, fetchurl, stdenv }:
+
+stdenv.mkDerivation rec {
+ pname = "mkclean";
+ version = "0.8.10";
+
+ hardeningDisable = [ "format" ];
+ nativeBuildInputs = [ dos2unix ];
+
+ src = fetchurl {
+ url = "mirror://sourceforge/matroska/${pname}-${version}.tar.bz2";
+ sha256 = "0zbpi4sm68zb20d53kbss93fv4aafhcmz7dsd0zdf01vj1r3wxwn";
+ };
+
+ configurePhase = ''
+ dos2unix ./mkclean/configure.compiled
+ ./mkclean/configure.compiled
+ '';
+
+ buildPhase = ''
+ make -C mkclean
+ '';
+
+ installPhase = ''
+ mkdir -p $out/{bin,lib}
+ mv release/gcc_linux_*/*.* $out/lib
+ mv release/gcc_linux_*/* $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "mkclean is a command line tool to clean and optimize Matroska (.mkv / .mka / .mks / .mk3d) and WebM (.webm / .weba) files that have already been muxed.";
+ homepage = "https://www.matroska.org";
+ license = licenses.bsdOriginal;
+ maintainers = with maintainers; [ chrisaw ];
+ platforms = [ "i686-linux" "x86_64-linux" ];
+ };
+}