From f909b20c540ea99dddfd04b8439ee35b8dd703b8 Mon Sep 17 00:00:00 2001 From: Akshay Date: Wed, 27 Oct 2021 17:10:42 +0530 Subject: allow stdin input to statix-single, vim plugin --- flake.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index ba1c431..26190aa 100644 --- a/flake.nix +++ b/flake.nix @@ -49,7 +49,7 @@ statix = with final; pkgs.stdenv.mkDerivation { pname = "statix"; - version = "v0.2.0"; + version = "v0.2.2"; src = builtins.path { path = ./.; name = "statix"; @@ -75,10 +75,17 @@ }; }; + statix-vim = + with final; pkgs.vimUtils.buildVimPlugin { + pname = "statix-vim"; + version = "0.1.0"; + src = ./vim-plugin; + }; + }; packages = forAllSystems (system: { - inherit (nixpkgsFor."${system}") statix; + inherit (nixpkgsFor."${system}") statix statix-vim; }); defaultPackage = -- cgit v1.2.3