mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
hound: init at 20160919
This commit is contained in:
parent
8ab8f49827
commit
14384f02e8
27
pkgs/development/tools/misc/hound/default.nix
Normal file
27
pkgs/development/tools/misc/hound/default.nix
Normal file
@ -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
pkgs/development/tools/misc/hound/deps.nix
Normal file
1
pkgs/development/tools/misc/hound/deps.nix
Normal file
@ -0,0 +1 @@
|
||||
[]
|
@ -7267,6 +7267,8 @@ in
|
||||
inherit (perlPackages) IOStringy;
|
||||
};
|
||||
|
||||
hound = callPackage ../development/tools/misc/hound { };
|
||||
|
||||
hspell = callPackage ../development/libraries/hspell { };
|
||||
|
||||
hspellDicts = callPackage ../development/libraries/hspell/dicts.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user