nixpkgs/pkgs/applications/audio/flac/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

12 lines
238 B
Nix

{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] ;
}