nixpkgs/pkgs/development/tools/millet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
732 B
Nix
Raw Normal View History

2022-07-22 04:20:00 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
2022-06-25 04:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "millet";
2022-09-08 04:20:00 +00:00
version = "0.3.8";
2022-06-25 04:20:00 +00:00
src = fetchFromGitHub {
owner = "azdavis";
repo = pname;
rev = "v${version}";
2022-09-08 04:20:00 +00:00
sha256 = "sha256-RTOFwgs9A7ESWT8g5EcVzmv9UGON/+cNj21VC8bURlk=";
2022-06-25 04:20:00 +00:00
};
2022-09-08 04:20:00 +00:00
cargoSha256 = "sha256-/yUyvFTaoQQ4Ttlp1IHye9Iu7iD2W/yhuHKC3Seu6k0=";
2022-06-25 04:20:00 +00:00
cargoBuildFlags = [ "--package" "lang-srv" ];
meta = with lib; {
description = "A language server for Standard ML";
homepage = "https://github.com/azdavis/millet";
2022-07-01 04:20:00 +00:00
changelog = "https://github.com/azdavis/millet/raw/v${version}/docs/changelog.md";
2022-09-03 04:20:00 +00:00
license = [ licenses.mit /* or */ licenses.asl20 ];
2022-06-25 04:20:00 +00:00
maintainers = with maintainers; [ marsam ];
};
}