Skip to content

Commit

Permalink
hound: init at 20160919
Browse files Browse the repository at this point in the history
(cherry picked from commit 14384f0)
  • Loading branch information
grahamc authored and rbvermaa committed Nov 8, 2016
1 parent 1db8b4a commit 9dff6f0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/tools/misc/hound/default.nix
@@ -0,0 +1,27 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "hound-unstable-${version}";
version = "20160919-${stdenv.lib.strings.substring 0 7 rev}";
rev = "f95e9a9224b8878b9cd8fac0afb6d31f83a65ca7";

goPackagePath = "github.com/etsy/hound";

src = fetchFromGitHub {
inherit rev;
owner = "etsy";
repo = "hound";
sha256 = "0d4mhka7f8x8xfjrjhl5l0v06ng8kc868jrajpv5bjkxsj71nwbg";
};

goDeps = ./deps.nix;

meta = with stdenv.lib; {
inherit (src) homepage;

description = "Lightning fast code searching made easy";
license = stdenv.lib.licenses.mit;
maintainers = with lib.maintainers; [ grahamc ];
platforms = stdenv.lib.platforms.unix;
};
}
1 change: 1 addition & 0 deletions pkgs/development/tools/misc/hound/deps.nix
@@ -0,0 +1 @@
[]
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7704,6 +7704,8 @@ in
inherit (perlPackages) IOStringy;
};

hound = callPackage ../development/tools/misc/hound { };

hspell = callPackage ../development/libraries/hspell { };

hspellDicts = callPackage ../development/libraries/hspell/dicts.nix { };
Expand Down

0 comments on commit 9dff6f0

Please sign in to comment.