nixpkgs/pkgs/development/libraries/libtheora/default.nix

31 lines
925 B
Nix
Raw Normal View History

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