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

Merge pull request #248611 from marsam/update-nixd

nixd: 1.2.1 -> 1.2.2

authored by

Franz Pletz and committed by
GitHub
07c0306a 6c3431e7

+4 -3
+4 -3
pkgs/development/tools/language-servers/nixd/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "nixd"; 21 - version = "1.2.1"; 21 + version = "1.2.2"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "nix-community"; 25 25 repo = "nixd"; 26 26 rev = version; 27 - hash = "sha256-NqRYFaxa6Y4j7IMAxxVKo7o15Xmx0CiyeG71Uf1SLCI="; 27 + hash = "sha256-W44orkPZQ9gDUTogb8YVIaw4WHzUA+ExOXhTnZlJ6yY="; 28 28 }; 29 29 30 30 mesonBuildType = "release"; ··· 81 81 meta = { 82 82 description = "Nix language server"; 83 83 homepage = "https://github.com/nix-community/nixd"; 84 + changelog = "https://github.com/nix-community/nixd/releases/tag/${version}"; 84 85 license = lib.licenses.lgpl3Plus; 85 - maintainers = with lib.maintainers; [ inclyc Ruixi-rebirth ]; 86 + maintainers = with lib.maintainers; [ inclyc Ruixi-rebirth marsam ]; 86 87 platforms = lib.platforms.unix; 87 88 }; 88 89 }