summary refs log tree commit diff
path: root/pkgs/applications/audio/flac/default.nix
blob: 0383a1ce0ad56ed0c3f63147035eccd47f3e2c69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libogg }:

stdenv.mkDerivation rec {
  name = "flac-1.3.0";

  src = fetchurl {
    url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz";
    sha256 = "1p0hh190kqvpkbk1bbajd81jfbmkyl4fn2i7pggk2zppq6m68bgs";
  };

  buildInputs = [ libogg ];

  doCheck = true; # takes lots of time but will be run rarely (small build-time closure)

  meta = {
    homepage = http://xiph.org/flac/;
    description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
    platforms = stdenv.lib.platforms.all;
  };
}