fzf: Move to go-packages and 0.10.0 -> 0.10.4

This commit is contained in:
William A. Kennington III
2015-09-02 17:26:57 -07:00
parent dea4d952ae
commit a8d64c8eea
3 changed files with 12 additions and 34 deletions

View File

@@ -1,33 +0,0 @@
{ stdenv, fetchFromGitHub, goPackages, syncthing, ncurses }:
with goPackages;
buildGoPackage rec {
name = "fzf-${version}";
version = "0.10.0";
goPackagePath = "github.com/junegunn/fzf";
src = fetchFromGitHub {
owner = "junegunn";
repo = "fzf";
rev = "${version}";
sha256 = "0dx9qwmcrnh31m2n75qmpj1dxm6rr6xsbazy4nwa3bzrb8y6svh2";
};
buildInputs = with goPackages; [
crypto
ginkgo
gomega
junegunn.go-runewidth
go-shellwords
ncurses
syncthing
text
];
meta = with stdenv.lib; {
homepage = https://github.com/junegunn/fzf;
description = "A command-line fuzzy finder written in Go";
license = licenses.mit;
maintainers = [ maintainers.magnetophon ];
};
}