taglib-sharp: init at 2.1.0.0
This commit is contained in:
parent
3576a2d549
commit
a4a19c57ad
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8824,6 +8824,8 @@ let
|
||||||
|
|
||||||
taglib_extras = callPackage ../development/libraries/taglib-extras { };
|
taglib_extras = callPackage ../development/libraries/taglib-extras { };
|
||||||
|
|
||||||
|
taglib-sharp = callPackage ../development/libraries/taglib-sharp { };
|
||||||
|
|
||||||
talloc = callPackage ../development/libraries/talloc {
|
talloc = callPackage ../development/libraries/talloc {
|
||||||
python = python2;
|
python = python2;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue