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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
672 B
Nix
Raw Normal View History

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; {
homepage = "https://github.com/sloonz/ua";
2022-03-08 13:41:59 +00:00
license = licenses.isc;
description = "Universal Aggregator";
2022-03-08 13:41:59 +00:00
maintainers = with maintainers; [ ttuegel ];
2017-04-01 22:13:46 +00:00
};
}