23 lines
591 B
Nix
23 lines
591 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub, pkgs, stdenv, ... }:
|
||
|
buildGoModule rec {
|
||
|
pname = "goki";
|
||
|
version = "0.1.1";
|
||
|
|
||
|
src = fetchFromGitHub
|
||
|
{
|
||
|
owner = "abeleinin";
|
||
|
repo = "goki";
|
||
|
rev = "b2c4ee6f0e040ce9ac2b089ab01438066e47bb9f";
|
||
|
hash = "sha256-ThAQ/VgIBjKyAmo2oZARh3nqo8wB6nuv/HYRCOSbe8U=";
|
||
|
};
|
||
|
|
||
|
|
||
|
vendorHash = "sha256-SCX/eXXnwnCNZ11jw+ZNeJ42HUhI5MnV+AaO89BTKJs=";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "An intelligent flashcard management tool for the terminal! ";
|
||
|
homepage = "https://github.com/abeleinin/goki";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|