linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / ua / default.nix
blobfeb17b283de56b8a7dc5784848e501ab7c16246d
1 { lib, buildGoPackage, fetchgit
2 , pkg-config
3 , glib, libxml2
4 }:
6 buildGoPackage rec {
7   pname = "ua-unstable";
8   version = "2017-02-24";
9   rev = "325dab92c60e0f028e55060f0c288aa70905fb17";
11   goPackagePath = "github.com/sloonz/ua";
13   src = fetchgit {
14     inherit rev;
15     url = "https://github.com/sloonz/ua.git";
16     sha256 = "0452qknc8km9495324g6b5ja3shvk8jl7aa9nrjhdylf09dp2nif";
17   };
19   goDeps = ./deps.nix;
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [ glib libxml2 ];
24   meta = {
25     homepage = "https://github.com/sloonz/ua";
26     license = lib.licenses.isc;
27     description = "Universal Aggregator";
28     platforms = lib.platforms.unix;
29     maintainers = with lib.maintainers; [ ttuegel ];
30   };