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

stdenv.mkDerivation {
  name = "audiofile-0.2.3";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/audiofile-0.2.5.tar.gz;
    md5 = "fd07c62a17ceafa317929e55e51e26c5";
  };
}