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

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