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

27 lines
629 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-08-20 17:01:56 +03:00
buildGoPackage rec {
name = "leaps-${version}";
2018-02-23 01:27:44 +03:00
version = "0.9.0";
2016-08-20 17:01:56 +03:00
2018-02-23 01:27:44 +03:00
goPackagePath = "github.com/Jeffail/leaps";
2016-08-20 17:01:56 +03:00
2016-11-06 12:33:21 +03:00
src = fetchFromGitHub {
2018-02-23 01:27:44 +03:00
owner = "Jeffail";
2016-11-06 12:33:21 +03:00
repo = "leaps";
2018-02-23 01:27:44 +03:00
sha256 = "1bzas7ixyfsfh81lnvplhx59yghkmnmy5p7jv9rnwp219dwbylpz";
2016-11-06 12:33:21 +03:00
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/;
2016-08-20 17:01:56 +03:00
license = "MIT";
maintainers = with stdenv.lib.maintainers; [ qknight ];
platforms = stdenv.lib.platforms.linux;
2016-08-20 17:01:56 +03:00
};
}
2016-11-06 12:33:21 +03:00