nixpkgs/pkgs/development/libraries/libtheora/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

31 lines
934 B
Nix

{stdenv, fetchurl, libogg, libvorbis, pkg-config}:
stdenv.mkDerivation rec {
name = "libtheora-1.1.1";
src = fetchurl {
url = "http://downloads.xiph.org/releases/theora/${name}.tar.gz";
sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
};
outputs = [ "out" "dev" "devdoc" ];
outputDoc = "devdoc";
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ libogg libvorbis ];
# GCC's -fforce-addr flag is not supported by clang
# It's just an optimization, so it's safe to simply remove it
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace configure --replace "-fforce-addr" ""
'';
meta = with stdenv.lib; {
homepage = "https://www.theora.org/";
description = "Library for Theora, a free and open video compression format";
license = licenses.bsd3;
maintainers = with maintainers; [ spwhitt ];
platforms = platforms.unix;
};
}