Get rid of neomutt and neovim

This commit is contained in:
Charlotte Van Petegem 2021-03-20 21:29:18 +01:00
parent afa2c88f6a
commit 18ec940162
No known key found for this signature in database
GPG key ID: 019E764B7184435A
13 changed files with 10 additions and 3158 deletions

View file

@ -1,18 +0,0 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
let
buildGradle = callPackage ./gradle-env.nix { };
in
buildGradle {
envSpec = ./gradle-env.json;
src = fetchTarball {
url = "https://github.com/fwcd/kotlin-language-server/archive/0.7.0.tar.gz";
sha256 = "0by07h2ly84dzmwzjf3fsgghm3fwhyhhbnnv3kl7dy1iajhl4shj";
};
gradleFlags = [ "server:installDist" ];
installPhase = ''
mkdir -p $out
cp -r server/build/install/server/* $out/
'';
}