28 lines
673 B
Nix
28 lines
673 B
Nix
{ lib, buildGoModule, fetchFromGitHub, pkg-config, ffmpeg }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hydron";
|
|
version = "3.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bakape";
|
|
repo = "hydron";
|
|
rev = "v${version}";
|
|
sha256 = "BfMkKwz7ITEnAIMGUHlBH/Dn9yLjWKoqFWupPo1s2cs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
vendorSha256 = "1ngig5zw0gf1mkjjsfvvn09rncb36rg274cbi3glp8wzfcr8aip3";
|
|
runVend = true;
|
|
|
|
buildInputs = [ ffmpeg ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bakape/hydron";
|
|
description = "High performance media tagger and organizer";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
};
|
|
}
|