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

13 lines
277 B
Nix
Raw Normal View History

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