blob: 4c14e5c55238c161d8b7bbc5893dfb9b7c59d372 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
stdenv,
lib,
fetchFromGitHub,
pkg-config,
cmake,
libyaml,
jansson,
libvorbis,
taglib,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tagutil";
version = "3.1-unstable-2025-06-16";
src = fetchFromGitHub {
owner = "kaworu";
repo = "tagutil";
rev = "c8b20ef350b1a8a67a747590e2e88b41f802cce4";
sha256 = "sha256-sKnBS9kXhJ2atN6A3qcX9A+0A7WfNkOe+nKSblL3i0o=";
};
sourceRoot = "${finalAttrs.src.name}/src";
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
libvorbis
libyaml
jansson
taglib
zlib
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace "-o aslr" ""
'';
meta = {
description = "Scriptable music files tags tool and editor";
homepage = "https://github.com/kaworu/tagutil";
license = lib.licenses.bsd2;
maintainers = [ ];
platforms = lib.platforms.linux;
mainProgram = "tagutil";
};
})
|