2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, pkg-config, ffmpeg }:
|
2018-07-18 19:17:42 +01:00
|
|
|
|
2020-12-28 16:02:41 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "hydron";
|
2022-04-17 22:15:55 +01:00
|
|
|
version = "3.3.5";
|
2018-07-18 19:17:42 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bakape";
|
|
|
|
repo = "hydron";
|
2020-12-28 16:02:41 +00:00
|
|
|
rev = "v${version}";
|
2022-04-17 22:15:55 +01:00
|
|
|
sha256 = "0c958dsw5pq9z8n1b9q9j8y6vgiqf6mmlsf77ncb7yrlilhbrz6s";
|
2018-07-18 19:17:42 +01:00
|
|
|
};
|
|
|
|
|
2022-04-17 22:15:55 +01:00
|
|
|
vendorSha256 = "0cc8ar8p7lgg6rj76vhfp6bzrxyn5yaqjwj8i1bn0zp6sj6zcfam";
|
2022-01-01 05:05:04 +00:00
|
|
|
proxyVendor = true;
|
2022-04-17 22:15:55 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-12-28 16:02:41 +00:00
|
|
|
buildInputs = [ ffmpeg ];
|
2018-07-18 19:17:42 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-18 19:17:42 +01:00
|
|
|
homepage = "https://github.com/bakape/hydron";
|
|
|
|
description = "High performance media tagger and organizer";
|
|
|
|
license = licenses.lgpl3Plus;
|
2022-04-18 00:13:36 +01:00
|
|
|
maintainers = with maintainers; [ Madouura ];
|
2018-07-18 19:17:42 +01:00
|
|
|
};
|
|
|
|
}
|