summary refs log tree commit diff
path: root/pkgs/tools/misc/i3cat/default.nix
blob: e91b17856ed7609df4ef0c5840e05ba3a508b20f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "i3cat";
  version = "20150321-${lib.strings.substring 0 7 rev}";
  rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576";

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

  src = fetchgit {
    inherit rev;
    url = "https://github.com/vincent-petithory/i3cat";
    sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72";
  };

  goDeps = ./deps.nix;
}