2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchsvn, autoreconfHook, pkgconfig, libogg }:
|
2011-03-10 22:20:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tremor-svn-${src.rev}";
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2011-03-10 22:20:35 +00:00
|
|
|
src = fetchsvn {
|
|
|
|
url = http://svn.xiph.org/trunk/Tremor;
|
|
|
|
rev = "17866";
|
|
|
|
sha256 = "161411cbefa1527da7a8fc087e78d8e21d19143d3a6eb42fb281e5026aad7568";
|
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|