nixpkgs/pkgs/development/libraries/taglib/1.9.nix

23 lines
611 B
Nix
Raw Normal View History

{stdenv, fetchurl, zlib, cmake}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "taglib-1.9.1";
src = fetchurl {
2018-11-25 19:51:59 +00:00
url = https://taglib.github.io/releases/taglib-1.9.1.tar.gz;
sha256 = "06n7gnbcqa3r6c9gv00y0y1r48dyyazm6yj403i7ma0r2k6p3lvj";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
meta = {
2018-11-25 19:51:59 +00:00
homepage = https://taglib.org/;
repositories.git = git://github.com/taglib/taglib.git;
description = "A library for reading and editing the meta-data of several popular audio formats";
inherit (cmake.meta) platforms;
2018-10-27 13:41:45 +00:00
license = with stdenv.lib.licenses; [ lgpl21 mpl11 ];
};
}