about summary refs log tree commit diff
path: root/pkgs/tools/misc/i3cat/default.nix
blob: 79e93847932f0a7b064f4aba7535434ee5ccfa29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "i3cat";
  version = "1.0";

  goPackagePath = "github.com/vincent-petithory/i3cat";

  src = fetchFromGitHub {
    owner = "vincent-petithory";
    repo = "i3cat";
    rev = "v${version}";
    sha256 = "sha256-BxiiYzSjvXAMUQSUTKviLvrmGjkCLW6QPrgBBHvvF+Q=";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "combine multiple i3bar JSON inputs into one to forward to i3bar";
    homepage = "https://vincent-petithory.github.io/i3cat/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}