mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
melpaBuild,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
stdenv,
|
|
nix-update-script,
|
|
}:
|
|
|
|
let
|
|
libExt = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
|
|
tsc-dyn = rustPlatform.buildRustPackage rec {
|
|
pname = "tsc-dyn";
|
|
version = "0.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emacs-tree-sitter";
|
|
repo = "emacs-tree-sitter";
|
|
rev = version;
|
|
hash = "sha256-LrakDpP3ZhRQqz47dPcyoQnu5lROdaNlxGaQfQT6u+k=";
|
|
};
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-Tua3ZFfSyWVYXU9mPLWXE6ejGlXowTNe3nvZBaicmSQ=";
|
|
|
|
sourceRoot = "${src.name}/core";
|
|
|
|
postInstall = ''
|
|
pushd $out/lib
|
|
mv --verbose libtsc_dyn${libExt} tsc-dyn${libExt}
|
|
echo -n $version > DYN-VERSION
|
|
popd
|
|
'';
|
|
};
|
|
in
|
|
melpaBuild {
|
|
pname = "tsc";
|
|
inherit (tsc-dyn) version src;
|
|
|
|
files = ''("core/*.el" "${tsc-dyn}/lib/*")'';
|
|
|
|
passthru = {
|
|
inherit tsc-dyn;
|
|
updateScript = nix-update-script { attrPath = "emacsPackages.tsc.tsc-dyn"; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Core APIs of the Emacs binding for tree-sitter";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ pimeys ];
|
|
};
|
|
}
|