nixpkgs/pkgs/applications/audio/flac/default.nix

24 lines
604 B
Nix
Raw Normal View History

2012-08-23 17:57:31 +00:00
{ stdenv, fetchurl, libogg }:
stdenv.mkDerivation rec {
name = "flac-1.3.1";
2012-08-23 17:57:31 +00:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz";
sha256 = "4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c";
};
2015-07-26 22:25:53 +00:00
outputs = [ "out" "doc" ];
2012-08-23 17:57:31 +00:00
buildInputs = [ libogg ];
#doCheck = true; # takes lots of time
2014-01-28 17:11:00 +00:00
meta = with stdenv.lib; {
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;
maintainers = [ maintainers.mornfall ];
};
}