2022-03-08 13:41:59 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config
|
2017-04-01 22:13:46 +00:00
|
|
|
, glib, libxml2
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2022-03-08 13:41:59 +00:00
|
|
|
pname = "ua";
|
|
|
|
version = "unstable-2017-02-24";
|
2017-04-01 22:13:46 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/sloonz/ua";
|
|
|
|
|
2022-03-08 13:41:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sloonz";
|
|
|
|
repo = "ua";
|
|
|
|
rev = "325dab92c60e0f028e55060f0c288aa70905fb17";
|
|
|
|
sha256 = "sha256-LlpxWwKO+gZltkmpQyWaG+qhZFnmETFKIqlOxOzEohA=";
|
2017-04-01 22:13:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
2022-03-08 13:41:59 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/sloonz/ua";
|
2022-03-08 13:41:59 +00:00
|
|
|
license = licenses.isc;
|
2017-12-05 22:20:11 +00:00
|
|
|
description = "Universal Aggregator";
|
2022-03-08 13:41:59 +00:00
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2017-04-01 22:13:46 +00:00
|
|
|
};
|
|
|
|
}
|