blob: b5d14f22827fa70600f8b1349c9104e6417e61fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
which,
pkg-config,
mono,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "taglib-sharp";
version = "2.1.0.0";
src = fetchFromGitHub {
owner = "mono";
repo = "taglib-sharp";
rev = "taglib-sharp-${finalAttrs.version}";
sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
which
];
buildInputs = [ mono ];
dontStrip = true;
configureFlags = [ "--disable-docs" ];
meta = {
description = "Library for reading and writing metadata in media files";
homepage = "https://github.com/mono/taglib-sharp";
platforms = lib.platforms.linux;
license = lib.licenses.lgpl21;
};
})
|