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

stdenv.mkDerivation {
  name = "taglib-1.4";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/taglib-1.4.tar.gz;
    md5 = "dcd50ddb2544faeae77f194804559404";
  };
  buildInputs = [zlib];
}