Add yar overlay for plundering organizations

This commit is contained in:
Dave Gallant
2021-06-24 21:26:44 -04:00
parent 38a9b87cb2
commit 6dfbd06317
3 changed files with 25 additions and 1 deletions

View File

@@ -2,9 +2,10 @@ final: prev: {
aws-connect = prev.callPackage ./aws-connect { };
lpass = prev.callPackage ./lastpass { };
changedetection.io = prev.callPackage ./changedetection.io { };
rfd = prev.callPackage ./rfd { };
srv = prev.callPackage ./srv { };
vpngate = prev.callPackage ./vpngate { };
changedetection.io = prev.callPackage ./changedetection.io { };
yar = prev.callPackage ./yar { };
}

22
overlays/yar/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "yar";
version = "master";
vendorSha256 = "sha256-bBaAP9HQ1fG6gPtoYg9HXnv53DueAFnT4OHE4rwlxvA=";
src = fetchFromGitHub {
owner = "nielsing";
repo = "yar";
rev = version;
sha256 = "sha256-f7pTS5Ur8ImbIkPkyunyQEgpeF79CIQFEodg69VxA9I=";
};
meta = with lib; {
description = "Yar is a tool for plunderin' organizations, users and/or repositories.";
license = licenses.gpl3;
maintainers = with maintainers; [ davegallant ];
platforms = platforms.linux ++ platforms.darwin;
};
}