summary refs log tree commit diff
path: root/pkgs/applications/audio/flac/default.nix
blob: 6d6b07348ff9ed6d392753145202ff3f58bfb86f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, libogg}:

stdenv.mkDerivation {
  name = "flac-1.1.2";
  src = fetchurl {
    url = http://downloads.xiph.org/releases/flac/flac-1.1.2.tar.gz;
    md5 = "2bfc127cdda02834d0491ab531a20960" ;
  };

  buildInputs = [libogg] ;
}