about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-09 12:27:42 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-13 00:44:55 +0200
commit335cc971be64bc85f5977d794685641b69f88e68 (patch)
treea6b6f40f25ee3b6f2ca7e53154fe2d092bfb4946 /pkgs/applications
parentbcd5e40aaddb4152d6dc153eeb7696cbbc85a668 (diff)
downloadnixlib-335cc971be64bc85f5977d794685641b69f88e68.tar
nixlib-335cc971be64bc85f5977d794685641b69f88e68.tar.gz
nixlib-335cc971be64bc85f5977d794685641b69f88e68.tar.bz2
nixlib-335cc971be64bc85f5977d794685641b69f88e68.tar.lz
nixlib-335cc971be64bc85f5977d794685641b69f88e68.tar.xz
nixlib-335cc971be64bc85f5977d794685641b69f88e68.tar.zst
nixlib-335cc971be64bc85f5977d794685641b69f88e68.zip
flycheck: correct description & use src's homepage
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/flycheck/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/emacs-modes/flycheck/default.nix b/pkgs/applications/editors/emacs-modes/flycheck/default.nix
index 98eab4d477c7..2a3c43828363 100644
--- a/pkgs/applications/editors/emacs-modes/flycheck/default.nix
+++ b/pkgs/applications/editors/emacs-modes/flycheck/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, emacs, let-alist, dash, texinfo }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "flycheck-0.22-64-g90dbc2d";
 
   src = fetchFromGitHub {
@@ -24,8 +24,8 @@ stdenv.mkDerivation {
   '';
 
   meta = {
-    homepage = "https://github.com/magit/git-modes";
-    description = "Emacs modes for various Git-related files";
+    inherit (src.meta) homepage;
+    description = "Modern on-the-fly syntax checking for GNU Emacs";
     license = stdenv.lib.licenses.gpl3Plus;
     maintainers = with stdenv.lib.maintainers; [ simons ];
   };