2018-03-17 18:25:51 +00:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, libogg }:
|
2011-03-10 22:20:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-18 09:19:18 +00:00
|
|
|
name = "tremor-unstable-2018-03-16";
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2018-03-17 18:25:51 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://git.xiph.org/tremor.git;
|
|
|
|
rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
|
|
|
|
sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
|
2011-03-10 22:20:35 +00:00
|
|
|
};
|
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2011-03-10 22:20:35 +00:00
|
|
|
propagatedBuildInputs = [ libogg ];
|
|
|
|
|
2011-04-23 21:58:30 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i /XIPH_PATH_OGG/d configure
|
|
|
|
'';
|
2011-03-10 22:20:35 +00:00
|
|
|
|
|
|
|
meta = {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://xiph.org/tremor/;
|
2011-03-10 22:20:35 +00:00
|
|
|
description = "Fixed-point version of the Ogg Vorbis decoder";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-03-10 22:20:35 +00:00
|
|
|
};
|
|
|
|
}
|