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

12 lines
238 B
Nix
Raw Normal View History

{stdenv, fetchurl, libogg}:
stdenv.mkDerivation {
name = "flac-1.1.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/flac-1.1.2.tar.gz;
md5 = "2bfc127cdda02834d0491ab531a20960" ;
};
buildInputs = [libogg] ;
}