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