bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
32 lines
927 B
Nix
32 lines
927 B
Nix
{stdenv, fetchurl, yasm, enable10bit ? false}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20160615-2245";
|
|
name = "x264-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.videolan.org/x264/snapshots/x264-snapshot-${version}-stable.tar.bz2";
|
|
sha256 = "0w5l77gm8bsmafzimzyc5s27kcw79r6nai3bpccqy0spyxhjsdc2";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
|
|
'';
|
|
|
|
outputs = [ "out" "lib" ]; # leaving 52 kB of headers
|
|
|
|
configureFlags = [ "--enable-shared" ]
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic"
|
|
++ stdenv.lib.optional (enable10bit) "--bit-depth=10";
|
|
|
|
buildInputs = [ yasm ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library for encoding H264/AVC video streams";
|
|
homepage = http://www.videolan.org/developers/x264.html;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.spwhitt ];
|
|
};
|
|
}
|