xin/pkgs/clilol.nix

29 lines
679 B
Nix
Raw Permalink Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchgit
, ...
2023-07-11 09:12:50 -06:00
}:
2023-07-02 05:47:22 -06:00
buildGoModule rec {
pname = "clilol";
version = "1.0.4";
src = fetchgit {
url = "https://git.mcornick.dev/mcornick/clilol.git";
rev = "v${version}";
hash = "sha256-VlL5prd021JrOf33jUdqORk9MxpyRQHNMpqDoSLLYi8=";
};
vendorHash = "sha256-i4UG52Z1zTM4VHBaNf5IYfQKnpC5iZTkK6L5hyQ6f4s=";
# attempts to make calls to api.omg.lol
doCheck = false;
meta = with lib; {
description = "a CLI for omg.lol";
homepage = "https://mcornick.dev/clilol/";
2023-07-11 09:12:50 -06:00
changelog = "https://git.mcornick.dev/mcornick/clilol/releases/tag/${version}";
2023-07-02 05:47:22 -06:00
license = licenses.mpl20;
2023-09-12 08:44:05 -06:00
maintainers = [ maintainers.qbit ];
2023-07-02 05:47:22 -06:00
};
}