pkgs/clilol: init 1.0.4
This commit is contained in:
parent
775af3a3dc
commit
c749979a36
@ -240,6 +240,7 @@
|
|||||||
spkgs.callPackage ./pkgs/ada_language_server.nix { inherit spkgs; };
|
spkgs.callPackage ./pkgs/ada_language_server.nix { inherit spkgs; };
|
||||||
alire = spkgs.callPackage ./pkgs/alire.nix { inherit spkgs; };
|
alire = spkgs.callPackage ./pkgs/alire.nix { inherit spkgs; };
|
||||||
bearclaw = spkgs.callPackage ./pkgs/bearclaw.nix { inherit spkgs; };
|
bearclaw = spkgs.callPackage ./pkgs/bearclaw.nix { inherit spkgs; };
|
||||||
|
clilol = spkgs.callPackage ./pkgs/clilol.nix { inherit spkgs; };
|
||||||
gqrss = spkgs.callPackage ./pkgs/gqrss.nix {
|
gqrss = spkgs.callPackage ./pkgs/gqrss.nix {
|
||||||
inherit spkgs;
|
inherit spkgs;
|
||||||
isUnstable = true;
|
isUnstable = true;
|
||||||
|
@ -142,6 +142,8 @@ in {
|
|||||||
"gh" = "op plugin run -- gh";
|
"gh" = "op plugin run -- gh";
|
||||||
"nixpkgs-review" =
|
"nixpkgs-review" =
|
||||||
"env GITHUB_TOKEN=$(op item get nixpkgs-review --field token) nixpkgs-review";
|
"env GITHUB_TOKEN=$(op item get nixpkgs-review --field token) nixpkgs-review";
|
||||||
|
"clilol" =
|
||||||
|
"env CLILOL_APIKEY=$(op item get omglol-cli --field credential) clilol";
|
||||||
"godeps" =
|
"godeps" =
|
||||||
"go list -m -f '{{if not (or .Indirect .Main)}}{{.Path}}{{end}}' all";
|
"go list -m -f '{{if not (or .Indirect .Main)}}{{.Path}}{{end}}' all";
|
||||||
"mutt" = "neomutt -F /etc/neomuttrc";
|
"mutt" = "neomutt -F /etc/neomuttrc";
|
||||||
@ -294,6 +296,7 @@ in {
|
|||||||
|
|
||||||
talon
|
talon
|
||||||
|
|
||||||
|
(callPackage ../../pkgs/clilol.nix { })
|
||||||
(callPackage ../../pkgs/iamb.nix { })
|
(callPackage ../../pkgs/iamb.nix { })
|
||||||
(callPackage ../../pkgs/kobuddy.nix {
|
(callPackage ../../pkgs/kobuddy.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
26
pkgs/clilol.nix
Normal file
26
pkgs/clilol.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildGoModule, fetchgit, ... }:
|
||||||
|
|
||||||
|
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/";
|
||||||
|
changelog =
|
||||||
|
"https://git.mcornick.dev/mcornick/clilol/releases/tag/${version}";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = [ maintainers.qbit ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user