nixpkgs/pkgs/development/libraries/libogg/default.nix

10 lines
217 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libogg-1.1.2";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libogg-1.1.2.tar.gz;
md5 = "4d82996517bf33bb912c97e9d0b635c4" ;
};
}