python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / taglib-sharp / default.nix
blob78a4026455e6d785d47363d0b26fed638c6aa1fa
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, which, pkg-config, mono }:
3 stdenv.mkDerivation rec {
4   pname = "taglib-sharp";
5   version = "2.1.0.0";
7   src = fetchFromGitHub {
8     owner = "mono";
9     repo = "taglib-sharp";
10     rev = "taglib-sharp-${version}";
11     sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
12   };
14   nativeBuildInputs = [ pkg-config autoreconfHook which ];
15   buildInputs = [ mono ];
17   dontStrip = true;
19   configureFlags = [ "--disable-docs" ];
21   meta = with lib; {
22     description = "Library for reading and writing metadata in media files";
23     homepage = "https://github.com/mono/taglib-sharp";
24     platforms = platforms.linux;
25     license = licenses.lgpl21;
26   };