taglib-sharp: init at 2.1.0.0

This commit is contained in:
Al Zohali 2016-02-08 17:04:11 +03:00
parent 3576a2d549
commit a4a19c57ad
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono }:
stdenv.mkDerivation rec {
name = "taglib-sharp-${version}";
version = "2.1.0.0";
src = fetchFromGitHub {
owner = "mono";
repo = "taglib-sharp";
rev = "taglib-sharp-${version}";
sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
};
nativeBuildInputs = [ pkgconfig autoreconfHook which ];
buildInputs = [ mono ];
dontStrip = true;
configureFlags = [ "--disable-docs" ];
meta = with stdenv.lib; {
description = "Library for reading and writing metadata in media files";
platforms = platforms.linux;
};
}

View File

@ -8824,6 +8824,8 @@ let
taglib_extras = callPackage ../development/libraries/taglib-extras { };
taglib-sharp = callPackage ../development/libraries/taglib-sharp { };
talloc = callPackage ../development/libraries/talloc {
python = python2;
};