nixpkgs/pkgs/servers/hydron/default.nix

28 lines
673 B
Nix
Raw Permalink 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";
version = "3.0.4";
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}";
sha256 = "BfMkKwz7ITEnAIMGUHlBH/Dn9yLjWKoqFWupPo1s2cs=";
2018-07-18 18:17:42 +00:00
};
2020-12-28 16:02:41 +00:00
nativeBuildInputs = [ pkg-config ];
2020-03-17 23:23:16 +00:00
2020-12-28 16:02:41 +00:00
vendorSha256 = "1ngig5zw0gf1mkjjsfvvn09rncb36rg274cbi3glp8wzfcr8aip3";
runVend = true;
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; [ chiiruno ];
};
}