summary refs log tree commit diff
path: root/pkgs/development/libraries/audiofile/default.nix
blob: a10ec7a95c3e2918f1a29f98ce32e9fc0333270f (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "audiofile-0.2.3";
  src = fetchurl {
    url = http://www.68k.org/~michael/audiofile/audiofile-0.2.5.tar.gz;
    md5 = "fd07c62a17ceafa317929e55e51e26c5";
  };
}