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

12 lines
253 B
Nix
Raw Normal View History

{stdenv, fetchurl, libogg}:
stdenv.mkDerivation {
name = "flac-1.1.1";
src = fetchurl {
url = http://mesh.dl.sourceforge.net/sourceforge/flac/flac-1.1.1.tar.gz ;
md5 = "c6ccddccf8ad344065698047c2fc7280" ;
};
buildInputs = [libogg] ;
}