nixpkgs/pkgs/development/tools/leaps/default.nix

27 lines
665 B
Nix
Raw Normal View History

2016-11-06 12:33:21 +03:00
{ stdenv, buildGoPackage, fetchFromGitHub, fetchhg, fetchbzr, fetchsvn }:
2016-08-20 17:01:56 +03:00
buildGoPackage rec {
name = "leaps-${version}";
2016-11-06 12:33:21 +03:00
version = "0.5.1";
2016-08-20 17:01:56 +03:00
goPackagePath = "github.com/jeffail/leaps";
2016-11-06 12:33:21 +03:00
src = fetchFromGitHub {
owner = "jeffail";
repo = "leaps";
sha256 = "0w63y777h5qc8fwnkrbawn3an9px0l1zz3649x0n8lhk125fvchj";
rev = "v${version}";
2016-08-20 17:01:56 +03:00
};
goDeps = ./deps.nix;
2016-11-06 12:33:21 +03:00
2016-08-20 17:01:56 +03:00
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;
};
}
2016-11-06 12:33:21 +03:00