nixpkgs/pkgs/development/libraries/taglib/default.nix
Eelco Dolstra 6386871030 * Build a Musepack plugin for BMP so that I can finally play that
Nixon in China rip again :-)

svn path=/nixpkgs/trunk/; revision=4676
2006-02-02 15:04:04 +00:00

11 lines
241 B
Nix

{stdenv, fetchurl, zlib}:
stdenv.mkDerivation {
name = "taglib-1.4";
src = fetchurl {
url = http://developer.kde.org/~wheeler/files/src/taglib-1.4.tar.gz;
md5 = "dcd50ddb2544faeae77f194804559404";
};
buildInputs = [zlib];
}