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