summary refs log tree commit diff
path: root/pkgs/tools/networking/ua/default.nix
blob: 4190e810214701468b604aacf320a010bf67f24b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, buildGoPackage, fetchFromGitHub
, pkg-config
, glib, libxml2
}:

buildGoPackage rec {
  pname = "ua";
  version = "unstable-2017-02-24";

  goPackagePath = "github.com/sloonz/ua";

  src = fetchFromGitHub {
    owner = "sloonz";
    repo = "ua";
    rev = "325dab92c60e0f028e55060f0c288aa70905fb17";
    sha256 = "sha256-LlpxWwKO+gZltkmpQyWaG+qhZFnmETFKIqlOxOzEohA=";
  };

  goDeps = ./deps.nix;

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ glib libxml2 ];

  meta = with lib; {
    homepage = "https://github.com/sloonz/ua";
    license = licenses.isc;
    description = "Universal Aggregator";
    maintainers = with maintainers; [ ttuegel ];
  };
}