My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/i3cat/default.nix

24 lines
605 B

{ 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; [ ];
};
}