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

32 lines
818 B
Nix
Raw Normal View History

2014-07-30 22:27:48 +00:00
{stdenv, fetchurl, writeText, zlib, gperf}:
stdenv.mkDerivation rec {
version = "0.15.1b";
name = "libid3tag-${version}";
src = fetchurl {
url = mirror://sourceforge/mad/libid3tag-0.15.1b.tar.gz;
sha256 = "63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151";
};
propagatedBuildInputs = [ zlib gperf ];
patches = [ ./debian-patches.patch ];
postInstall = ''
mkdir -p $out/lib/pkgconfig
cp ${./id3tag.pc} $out/lib/pkgconfig/id3tag.pc
substituteInPlace $out/lib/pkgconfig/id3tag.pc \
--subst-var-by out $out \
--subst-var-by version "${version}"
2014-07-30 22:27:48 +00:00
'';
meta = with stdenv.lib; {
description = "ID3 tag manipulation library";
homepage = http://mad.sourceforge.net/;
license = licenses.gpl2;
maintainers = [ maintainers.fuuzetsu ];
};
}