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

24 lines
596 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libogg }:
stdenv.mkDerivation rec {
name = "flac-1.3.2";
2012-08-23 19:57:31 +02:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz";
sha256 = "0gymm2j3276kr9nz6vmgfwsdfrq6c449n40a0mzz8h6wc7nw7kwi";
};
2012-08-23 19:57:31 +02:00
buildInputs = [ libogg ];
#doCheck = true; # takes lots of time
outputs = [ "bin" "dev" "out" "man" "doc" ];
2014-01-28 18:11:00 +01:00
meta = with stdenv.lib; {
homepage = https://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;
2018-08-23 00:01:38 +02:00
license = licenses.bsd3;
};
}