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
698 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-2022-10-23";
2017-04-01 22:13:46 +00:00
2022-03-08 13:41:59 +00:00
src = fetchFromGitHub {
owner = "sloonz";
repo = "ua";
rev = "f636f5eec425754d8a8be8e767c5b3e4f31fe1f9";
hash = "sha256-U9fApk/dyz7xSho2W8UT0OGIeOYR/v9lM0LHN2OqTEQ=";
2017-04-01 22:13:46 +00:00
};
vendorHash = "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
};
}