mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +02:00
16 lines
387 B
Nix
16 lines
387 B
Nix
pkgs: rec {
|
|
rust-analyzer-config = pkgs.callPackage ./rust-analyzer {};
|
|
autogenerated-configs = pkgs.callPackage ({stdenv}:
|
|
stdenv.mkDerivation {
|
|
pname = "autogenerated-configs";
|
|
version = "master";
|
|
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp ${rust-analyzer-config}/share/* $out
|
|
'';
|
|
}) {};
|
|
}
|