lol
at 16.09-beta 25 lines 652 B view raw
1{ stdenv, fetchsvn, autoreconfHook, pkgconfig, libogg }: 2 3stdenv.mkDerivation rec { 4 name = "tremor-svn-${src.rev}"; 5 6 src = fetchsvn { 7 url = http://svn.xiph.org/trunk/Tremor; 8 rev = "17866"; 9 sha256 = "161411cbefa1527da7a8fc087e78d8e21d19143d3a6eb42fb281e5026aad7568"; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 13 propagatedBuildInputs = [ libogg ]; 14 15 preConfigure = '' 16 sed -i /XIPH_PATH_OGG/d configure 17 ''; 18 19 meta = { 20 homepage = http://xiph.org/tremor/; 21 description = "Fixed-point version of the Ogg Vorbis decoder"; 22 license = stdenv.lib.licenses.bsd3; 23 platforms = stdenv.lib.platforms.unix; 24 }; 25}