nixpkgs/pkgs/development/tools/misc/hound/default.nix

42 lines
895 B
Nix
Raw Normal View History

2019-08-01 21:28:33 +01:00
{ stdenv
, buildGoPackage
, fetchFromGitHub
, makeWrapper
, mercurial
, git
}:
2016-10-12 23:00:04 +01:00
buildGoPackage rec {
name = "hound-unstable-${version}";
2018-11-23 12:22:01 +00:00
version = "2018-11-02";
rev = "74ec7448a234d8d09e800b92e52c92e378c07742";
2016-10-12 23:00:04 +01:00
2019-08-01 21:28:33 +01:00
nativeBuildInputs = [ makeWrapper ];
2016-10-12 23:00:04 +01:00
goPackagePath = "github.com/etsy/hound";
src = fetchFromGitHub {
inherit rev;
owner = "etsy";
repo = "hound";
2018-11-23 12:22:01 +00:00
sha256 = "0g6nvgqjabprcl9z5ci5frhbam1dzq978h1d6aanf8vvzslfgdpq";
2016-10-12 23:00:04 +01:00
};
goDeps = ./deps.nix;
2019-08-01 21:28:33 +01:00
postInstall = with stdenv; let
binPath = lib.makeBinPath [ mercurial git ];
in ''
wrapProgram $bin/bin/houndd --prefix PATH : ${binPath}
'';
2016-10-16 18:08:14 +01:00
meta = {
inherit (src.meta) homepage;
2016-10-12 23:00:04 +01:00
description = "Lightning fast code searching made easy";
license = stdenv.lib.licenses.mit;
2016-10-16 18:08:14 +01:00
maintainers = with stdenv.lib.maintainers; [ grahamc ];
2016-10-12 23:00:04 +01:00
platforms = stdenv.lib.platforms.unix;
};
}