571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.5 KiB
Nix
36 lines
1.5 KiB
Nix
{ lib, stdenv, fetchurl, flac, lame, zlib, libjpeg, libvorbis, libtheora, libxml2
|
|
, lzo, libdvdread, pkg-config, x264, libmpeg2, xvidcore }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "transcode";
|
|
version = "1.1.7";
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/france/transcode-tcforge/downloads/${pname}-${version}.tar.bz2";
|
|
sha256 = "1e4e72d8e0dd62a80b8dd90699f5ca64c9b0cb37a5c9325c184166a9654f0a92";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ flac lame zlib libjpeg libvorbis libtheora libxml2 lzo
|
|
libdvdread x264 libmpeg2 xvidcore ];
|
|
configureFlags = [
|
|
"--disable-ffmpeg" "--disable-libavcodec" "--disable-libavformat"
|
|
"--enable-lzo" "--enable-ogg" "--enable-vorbis" "--enable-theora" "--enable-libxml2"
|
|
"--enable-x264" "--enable-libmpeg2" "--enable-xvid"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: tcextract-extract_pcm.o:/build/transcode-1.1.7/import/extract_pcm.c:36: multiple definition of
|
|
# `audio'; tcextract-extract_ac3.o:/build/transcode-1.1.7/import/extract_ac3.c:337: first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
meta = with lib; {
|
|
description = "Suite of command line utilities for transcoding video and audio codecs, and for converting between different container formats";
|
|
homepage = "http://www.transcoding.org/";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|