mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
clidle: init at unstable-2022-03-02
This commit is contained in:
parent
190f51ed10
commit
142f9857a7
20
pkgs/clidle.nix
Normal file
20
pkgs/clidle.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "clidle";
|
||||
version = "unstable-2022-03-02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ajeetdsouza";
|
||||
repo = "clidle";
|
||||
rev = "5e4a725489f9f39d107952cff8cd87d968a6b48b";
|
||||
sha256 = "sha256-6ZiBa7xNDys1zv/PdcG8XsJTqvMzaxdpYyB06pMYlI4=";
|
||||
};
|
||||
vendorSha256 = "sha256-YophzzTilKg+7QhthBr4G6vJBGt6l+9Y+I5E8Umuo8U=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Play Wordle over SSH";
|
||||
homepage = "https://github.com/ajeetdsouza/clidle";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -8,6 +8,7 @@ let
|
||||
in {
|
||||
blueprint-compiler = callPackage ./blueprint-compiler.nix { };
|
||||
butler = callPackage ./butler.nix { };
|
||||
clidle = callPackage ./clidle.nix { };
|
||||
distant = callPackage ./distant.nix { };
|
||||
devdocs-desktop = callPackage ./devdocs-desktop.nix { };
|
||||
doggo = callPackage ./doggo.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user