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