about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/default.nix
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-30 18:00:14 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-31 02:02:07 +0200
commit6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c (patch)
tree9f7bd2fec1937f8f8de2446ebe0576e2de5a8609 /pkgs/applications/editors/neovim/default.nix
parenta010a30889d154321081a3e7b8bf6d6ecfbe51e4 (diff)
downloadnixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar.gz
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar.bz2
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar.lz
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar.xz
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.tar.zst
nixlib-6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c.zip
Remove unnecessary rec{s from "my" packages
Diffstat (limited to 'pkgs/applications/editors/neovim/default.nix')
-rw-r--r--pkgs/applications/editors/neovim/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 28d455e06b26..c55d4b0e76a7 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -17,7 +17,7 @@ let
   version = "2015-06-09";
 
   # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
-  neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation rec {
+  neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation {
     name = "neovim-libvterm-${version}";
 
     src = fetchFromGitHub {
@@ -54,7 +54,7 @@ let
     ignoreCollisions = true;
   };
 
-  neovim = stdenv.mkDerivation rec {
+  neovim = stdenv.mkDerivation {
     name = "neovim-${version}";
 
     src = fetchFromGitHub {
@@ -135,7 +135,7 @@ let
     };
   };
 
-in if (vimAlias == false && configure == null) then neovim else stdenv.mkDerivation rec {
+in if (vimAlias == false && configure == null) then neovim else stdenv.mkDerivation {
   name = "neovim-${version}-configured";
   nativeBuildInputs = [ makeWrapper ];
   buildCommand = ''