Unverified Commit 25778548 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #311713 from isabelroses/goflow/by-name

goflow2: move to by-name
parents 9ea47bec bed91927
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -3,13 +3,16 @@
  buildGoModule,
  fetchFromGitHub,
}:
buildGoModule rec {
  pname = "goflow2";
let
  version = "2.1.3";
in
buildGoModule {
  pname = "goflow2";
  inherit version;

  src = fetchFromGitHub {
    owner = "netsampler";
    repo = pname;
    repo = "goflow2";
    rev = "v${version}";
    hash = "sha256-wtvBkk+Y4koGDGN+N/w4FsdejgpCIio0g2QV35Pr/fo=";
  };
@@ -22,10 +25,10 @@ buildGoModule rec {

  vendorHash = "sha256-qcWeIg278V2bgFGpWwUT5JCblxfBv0/gWV1oXul/nCQ=";

  meta = with lib; {
  meta = {
    description = "High performance sFlow/IPFIX/NetFlow Collector";
    homepage = "https://github.com/netsampler/goflow2";
    license = licenses.bsd3;
    maintainers = with maintainers; [ isabelroses ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ isabelroses ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -1841,8 +1841,6 @@ with pkgs;
  goflow = callPackage ../tools/networking/goflow { };
  goflow2 = callPackage ../tools/networking/goflow2 { };
  gofu = callPackage ../applications/misc/gofu { };
  godspeed = callPackage ../tools/networking/godspeed { };