2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, libogg }:
|
2011-03-10 14:20:35 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2018-03-18 02:19:18 -07:00
|
|
|
name = "tremor-unstable-2018-03-16";
|
2016-01-17 15:04:40 -08:00
|
|
|
|
2020-06-15 03:06:03 -07:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "xiph";
|
|
|
|
repo = "tremor";
|
|
|
|
domain = "gitlab.xiph.org";
|
2018-03-17 11:25:51 -07:00
|
|
|
rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
|
|
|
|
sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
|
2011-03-10 14:20:35 -08:00
|
|
|
};
|
|
|
|
|
2019-09-25 03:44:15 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2011-03-10 14:20:35 -08:00
|
|
|
propagatedBuildInputs = [ libogg ];
|
|
|
|
|
2011-04-23 14:58:30 -07:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i /XIPH_PATH_OGG/d configure
|
|
|
|
'';
|
2011-03-10 14:20:35 -08:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://xiph.org/tremor/";
|
2011-03-10 14:20:35 -08:00
|
|
|
description = "Fixed-point version of the Ogg Vorbis decoder";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.unix;
|
2011-03-10 14:20:35 -08:00
|
|
|
};
|
|
|
|
}
|