about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/audiofile/default.nix
blob: c39178cdf1788090777166c410bd4c36e4f62870 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, xz, alsaLib}:

stdenv.mkDerivation {
  name = "audiofile-0.3.2";

  src = fetchurl {
    url = mirror://gnome/sources/audiofile/0.3/audiofile-0.3.2.tar.xz;
    sha256 = "185j69j6b0vp6h6bb4j4ipvcyysxf63ghxnvdhh8kbc7ixm71hgs";
  };

  buildNativeInputs = [ xz ];

  buildInputs = [ alsaLib ];
}