summary refs log tree commit diff
path: root/pkgs/development/tools/leaps/default.nix
blob: a2a35c7fd1d709eea38b107f0e59ee7205596c2d (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
25
26
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "leaps";
  version = "0.9.0";

  goPackagePath = "github.com/Jeffail/leaps";

  src = fetchFromGitHub {
    owner = "Jeffail";
    repo = "leaps";
    sha256 = "1bzas7ixyfsfh81lnvplhx59yghkmnmy5p7jv9rnwp219dwbylpz";
    rev = "v${version}";
  };

  goDeps = ./deps.nix;
  
  meta = {
    description = "A pair programming tool and library written in Golang";
    homepage = https://github.com/jeffail/leaps/;
    license = "MIT";
    maintainers = with stdenv.lib.maintainers; [ qknight ];
    platforms = stdenv.lib.platforms.unix;
  };
}