nixpkgs/pkgs/tools/networking/ua/default.nix

32 lines
715 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchgit
2021-01-17 03:51:22 +00:00
, pkg-config
2017-04-01 22:13:46 +00:00
, glib, libxml2
}:
buildGoPackage rec {
pname = "ua-unstable";
2017-04-01 22:13:46 +00:00
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;
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2017-04-01 22:13:46 +00:00
buildInputs = [ glib libxml2 ];
meta = {
homepage = "https://github.com/sloonz/ua";
2021-01-15 09:19:50 +00:00
license = lib.licenses.isc;
description = "Universal Aggregator";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ttuegel ];
2017-04-01 22:13:46 +00:00
};
}