2012-08-23 10:57:31 -07:00
|
|
|
{ stdenv, fetchurl, libogg }:
|
2009-02-09 08:51:03 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-28 12:15:58 -08:00
|
|
|
name = "flac-1.3.1";
|
2012-08-23 10:57:31 -07:00
|
|
|
|
2009-02-09 08:51:03 -08:00
|
|
|
src = fetchurl {
|
2013-06-11 05:17:56 -07:00
|
|
|
url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz";
|
2014-11-28 12:15:58 -08:00
|
|
|
sha256 = "4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c";
|
2009-02-09 08:51:03 -08:00
|
|
|
};
|
|
|
|
|
2015-07-26 15:25:53 -07:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2012-08-23 10:57:31 -07:00
|
|
|
buildInputs = [ libogg ];
|
|
|
|
|
2014-07-23 01:48:27 -07:00
|
|
|
#doCheck = true; # takes lots of time
|
2009-02-12 13:19:31 -08:00
|
|
|
|
2014-01-28 09:11:00 -08:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-11 05:17:56 -07:00
|
|
|
homepage = http://xiph.org/flac/;
|
2012-08-23 10:57:31 -07:00
|
|
|
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
|
2014-01-28 09:11:00 -08:00
|
|
|
platforms = platforms.all;
|
2014-09-13 04:51:39 -07:00
|
|
|
maintainers = [ maintainers.mornfall ];
|
2009-02-09 08:51:03 -08:00
|
|
|
};
|
|
|
|
}
|