nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 33 lines 795 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchCrate, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "rune-languageserver"; 9 version = "0.13.4"; 10 11 src = fetchCrate { 12 inherit pname version; 13 hash = "sha256-Kw6Qh/9eQPMj4V689+7AxuJB+aCciK3FZTfcdhyZXGY="; 14 }; 15 16 cargoHash = "sha256-YviRACndc4r4ul72ZF3I/R/nEsIoML2Ek2xqUUE3FDQ="; 17 18 env = { 19 RUNE_VERSION = version; 20 }; 21 22 meta = { 23 description = "Language server for the Rune Language, an embeddable dynamic programming language for Rust"; 24 homepage = "https://crates.io/crates/rune-languageserver"; 25 changelog = "https://github.com/rune-rs/rune/releases/tag/${version}"; 26 license = with lib.licenses; [ 27 asl20 28 mit 29 ]; 30 maintainers = with lib.maintainers; [ figsoda ]; 31 mainProgram = "rune-languageserver"; 32 }; 33}