mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
moac: init at 2.0.2
This commit is contained in:
parent
d225257f8d
commit
0d6dcba7ff
@ -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
21
pkgs/moac.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user