summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorChris Martin <ch.martin@gmail.com>2016-05-13 18:31:30 -0400
committerChris Martin <ch.martin@gmail.com>2016-05-13 18:33:17 -0400
commit51686b76afcd962f98c536e3b278658b1ec4afcc (patch)
treeac44c7e21efe9bcd0563fcf8b1d4c6af8c9d7b52 /pkgs/top-level
parente4602677370b6fa017968ae2a9538e32783d9921 (diff)
downloadnixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar.gz
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar.bz2
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar.lz
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar.xz
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.tar.zst
nixpkgs-51686b76afcd962f98c536e3b278658b1ec4afcc.zip
goPackages.go-quickfix: init at a5d4c82
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/go-packages.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix
index fca74bcdcc4..8e1680c2a0f 100644
--- a/pkgs/top-level/go-packages.nix
+++ b/pkgs/top-level/go-packages.nix
@@ -1792,6 +1792,21 @@ let
     sha256 = "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y";
   };
 
+  go-quickfix = buildFromGitHub {
+    rev = "a5d4c82f7428280897ef403a87aa78b9c5924a47";
+    sha256 = "0m1vclhqygnylfyhzpw5myi3f4qz30a3h9mbssxdsgn67s7l666y";
+    owner = "motemen";
+    repo = "go-quickfix";
+    buildInputs = [ tools ];
+    excludedPackages = "testdata";
+
+    meta = with stdenv.lib; {
+      homepage = "https://github.com/motemen/go-quickfix";
+      description = ''Quick fix non-compiling well-typed Go source code e.g. "x declared and not used."'';
+      license = licenses.mit;
+    };
+  };
+
   go-radix = buildFromGitHub {
     rev    = "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93";
     owner  = "armon";