nixpkgs/pkgs/servers/hydron/default.nix

28 lines
818 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, ffmpeg-full, graphicsmagick
2018-07-18 18:17:42 +00:00
, quicktemplate, go-bindata, easyjson }:
2019-08-13 21:52:01 +00:00
buildGoPackage {
pname = "hydron-unstable";
2019-03-23 06:17:26 +00:00
version = "2019-02-17";
2018-07-18 18:17:42 +00:00
goPackagePath = "github.com/bakape/hydron";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "bakape";
repo = "hydron";
2019-03-23 06:17:26 +00:00
rev = "824789fb108966432e507143db39b358dd7ff233";
sha256 = "1xxykjf5iyavm12gd6nx4j8x2mlzzn7x8vm0j5009lsir98qr5zn";
2018-07-18 18:17:42 +00:00
};
2020-03-17 23:23:16 +00:00
nativeBuildInputs = [ pkgconfig go-bindata ];
buildInputs = [ ffmpeg-full graphicsmagick quicktemplate easyjson ];
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 ];
};
}