1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/development/libraries/libogg/default.nix

10 lines
206 B
Nix
Raw Normal View History

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