about summary refs log tree commit diff
path: root/pkgs/development/tools/leaps/default.nix
blob: 261d16367d40872d8eb05b8961beb3a7cce5c6f5 (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, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "leaps-${version}";
  version = "0.5.1";

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

  src = fetchFromGitHub {
    owner = "jeffail";
    repo = "leaps";
    sha256 = "0w63y777h5qc8fwnkrbawn3an9px0l1zz3649x0n8lhk125fvchj";
    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 ];
    meta.platforms = stdenv.lib.platforms.linux;
  };
}