wine: add profile
[julm/julm-nix.git] / nixpkgs / overlays / vim-ghcid-quickfix.nix
index 242a4a2b3936ddf9591b1cf36f473f3905354e56..e13ee9d847767b815ab995c2aab35f7493c556de 100644 (file)
@@ -1,15 +1,17 @@
 final: super: {
-  vimPlugins = super.vimPlugins.extend (_vfinal: _vsuper: {
-    vim-ghcid-quickfix = final.vimUtils.buildVimPluginFrom2Nix {
-      pname = "vim-ghcid-quickfix";
-      version = "186201ae90c4c98076436efaac1e35daf2c88d72";
-      src = super.fetchFromGitHub {
-        owner = "aiya000";
-        repo = "vim-ghcid-quickfix";
-        rev = "186201ae90c4c98076436efaac1e35daf2c88d72";
-        sha256 = "sha256-qcabzRFv/o5ZRRvGixHtcQGnSg0S20XHaQkqsE31N4g=";
+  vimPlugins = super.vimPlugins.extend (
+    _vfinal: _vsuper: {
+      vim-ghcid-quickfix = final.vimUtils.buildVimPluginFrom2Nix {
+        pname = "vim-ghcid-quickfix";
+        version = "186201ae90c4c98076436efaac1e35daf2c88d72";
+        src = super.fetchFromGitHub {
+          owner = "aiya000";
+          repo = "vim-ghcid-quickfix";
+          rev = "186201ae90c4c98076436efaac1e35daf2c88d72";
+          sha256 = "sha256-qcabzRFv/o5ZRRvGixHtcQGnSg0S20XHaQkqsE31N4g=";
+        };
+        meta.homepage = "https://github.com/aiya000/vim-ghcid-quickfix";
       };
-      meta.homepage = "https://github.com/aiya000/vim-ghcid-quickfix";
-    };
-  });
+    }
+  );
 }