taglib-sharp: init at 2.1.0.0
This commit is contained in:
parent
3576a2d549
commit
a4a19c57ad
26
pkgs/development/libraries/taglib-sharp/default.nix
Normal file
26
pkgs/development/libraries/taglib-sharp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user