914e0e594c
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541 * update docs to describe `deps.nix` * include goDeps in nix-shell GOPATH * NixOS 16.09 rel notes about replacing goPackages
18 lines
489 B
Nix
18 lines
489 B
Nix
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
buildGoPackage rec {
|
|
name = "i3cat-${version}";
|
|
version = "20150321-${stdenv.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;
|
|
}
|