2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, pkg-config, ffmpeg }:
|
2018-07-18 20:17:42 +02:00
|
|
|
|
2020-12-28 17:02:41 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "hydron";
|
|
|
|
version = "3.0.4";
|
2018-07-18 20:17:42 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bakape";
|
|
|
|
repo = "hydron";
|
2020-12-28 17:02:41 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "BfMkKwz7ITEnAIMGUHlBH/Dn9yLjWKoqFWupPo1s2cs=";
|
2018-07-18 20:17:42 +02:00
|
|
|
};
|
|
|
|
|
2020-12-28 17:02:41 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-03-18 00:23:16 +01:00
|
|
|
|
2020-12-28 17:02:41 +01:00
|
|
|
vendorSha256 = "1ngig5zw0gf1mkjjsfvvn09rncb36rg274cbi3glp8wzfcr8aip3";
|
|
|
|
runVend = true;
|
|
|
|
|
|
|
|
buildInputs = [ ffmpeg ];
|
2018-07-18 20:17:42 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-07-18 20:17:42 +02:00
|
|
|
homepage = "https://github.com/bakape/hydron";
|
|
|
|
description = "High performance media tagger and organizer";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
|
|
};
|
|
|
|
}
|