moac: init at 2.0.2

This commit is contained in:
Gabriel Arazas 2022-03-02 16:18:23 +08:00
parent d225257f8d
commit 0d6dcba7ff
2 changed files with 22 additions and 0 deletions

View File

@ -28,6 +28,7 @@ let
ictree = callPackage ./ictree.nix { };
junction = callPackage ./junction.nix { };
libcs50 = callPackage ./libcs50.nix { };
moac = callPackage ./moac.nix { };
mopidy-beets = callPackage ./mopidy-beets.nix { };
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };

21
pkgs/moac.nix Normal file
View File

@ -0,0 +1,21 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "moac";
version = "2.0.2";
src = fetchFromGitHub {
owner = "Seirdy";
repo = pname;
rev = "v${version}";
sha256 = "sha256-WpmO0VOSuwcoERLORool1IfeehqLdWN5ny/+TapkAm0=";
};
vendorSha256 = "sha256-5clp7s6xVUmniN5b9lFu/LW3CjDtgMMRzWIH+o7DnJQ=";
meta = with lib; {
description = "Generic password generator and analyzer";
homepage = "https://github.com/Seirdy/moac";
license = licenses.mpl20;
};
}