nixpkgs/pkgs/servers/hydron/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
683 B
Nix
Raw Normal View History

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