lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 23 lines 604 B view raw
1{ stdenv, fetchurl, libogg }: 2 3stdenv.mkDerivation rec { 4 name = "flac-1.3.1"; 5 6 src = fetchurl { 7 url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz"; 8 sha256 = "4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c"; 9 }; 10 11 outputs = [ "out" "doc" ]; 12 13 buildInputs = [ libogg ]; 14 15 #doCheck = true; # takes lots of time 16 17 meta = with stdenv.lib; { 18 homepage = http://xiph.org/flac/; 19 description = "Library and tools for encoding and decoding the FLAC lossless audio file format"; 20 platforms = platforms.all; 21 maintainers = [ maintainers.mornfall ]; 22 }; 23}