tagutil: init at 3.1
This commit is contained in:
parent
7aa78642c5
commit
be20f51611
2 changed files with 42 additions and 0 deletions
40
pkgs/applications/audio/tagutil/default.nix
Normal file
40
pkgs/applications/audio/tagutil/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ stdenv, lib, fetchFromGitHub
|
||||
, pkg-config, cmake, libyaml
|
||||
, jansson, libvorbis, taglib
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tagutil";
|
||||
version = "3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kaworu";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-oY1aGl5CKVtpOfh8Wskio/huWYMiPuxWPqxlooTutcw=";
|
||||
};
|
||||
|
||||
sourceRoot = "source/src";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libvorbis
|
||||
libyaml
|
||||
jansson
|
||||
taglib
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scriptable music files tags tool and editor";
|
||||
homepage = "https://github.com/kaworu/tagutil";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -9308,6 +9308,8 @@ in
|
|||
|
||||
tboot = callPackage ../tools/security/tboot { };
|
||||
|
||||
tagutil = callPackage ../applications/audio/tagutil { };
|
||||
|
||||
tcpdump = callPackage ../tools/networking/tcpdump { };
|
||||
|
||||
tcpflow = callPackage ../tools/networking/tcpflow { };
|
||||
|
|
Loading…
Reference in a new issue