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