mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
22 lines
516 B
Nix
22 lines
516 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|