about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/ua/default.nix
blob: 9ce7f5df247f9bda697b00ffeff4d6576966031c (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
31
{ stdenv, buildGoPackage, fetchgit
, pkgconfig
, glib, libxml2
}:

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

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

  src = fetchgit {
    inherit rev;
    url = "https://github.com/sloonz/ua.git";
    sha256 = "0452qknc8km9495324g6b5ja3shvk8jl7aa9nrjhdylf09dp2nif";
  };

  goDeps = ./deps.nix;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ glib libxml2 ];

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