nixpkgs/pkgs/development/libraries/taglib/default.nix
Eelco Dolstra 6c2cbbbe87 * Updated Audacious and its dependencies.
svn path=/nixpkgs/trunk/; revision=12763
2008-08-29 11:31:16 +00:00

18 lines
451 B
Nix

{stdenv, fetchurl, zlib}:
stdenv.mkDerivation {
name = "taglib-1.5";
src = fetchurl {
url = http://developer.kde.org/~wheeler/files/src/taglib-1.5.tar.gz;
sha256 = "1hhfap06zqrn17zh1cl3qlh3i598jw3qs01y2dc4i7akxhb0fqds";
};
buildInputs = [zlib];
meta = {
homepage = http://developer.kde.org/~wheeler/taglib.html;
description = "A library for reading and editing the meta-data of several popular audio formats";
};
}