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

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

28 lines
702 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, pkg-config, glib, libxml2 }:
2017-04-01 22:13:46 +00:00
buildGoModule rec {
2022-03-08 13:41:59 +00:00
pname = "ua";
version = "unstable-2021-12-18";
2017-04-01 22:13:46 +00:00
2022-03-08 13:41:59 +00:00
src = fetchFromGitHub {
owner = "sloonz";
repo = "ua";
rev = "b6d75970bb4f6f340887e1eadad5aa8ce78f30e3";
sha256 = "sha256-rCp8jyqQfq5eVdvKZz3vKuDfcR+gQOEAfBZx2It/rb0=";
2017-04-01 22:13:46 +00:00
};
vendorSha256 = "sha256-0O80uhxSVsV9N7Z/FgaLwcjZqeb4MqSCE1YW5Zd32ns=";
2017-04-01 22:13:46 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2017-04-01 22:13:46 +00:00
buildInputs = [ glib libxml2 ];
ldflags = [ "-s" "-w" ];
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
};
}