mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
34 lines
761 B
Nix
34 lines
761 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pls";
|
|
version = "0.0.1-beta.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dhruvkb";
|
|
repo = "pls";
|
|
rev = "v${version}";
|
|
hash = "sha256-YndQx7FImtbAfcbOpIGOdHQA1V7mbQiYBbpik2I+FCE=";
|
|
};
|
|
|
|
cargoHash = "sha256-HzkN856GHhY2sQ0jmQCCQva/yB4zzh+ccrQvibLFhxQ=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/pls-rs/pls/releases/tag/${src.rev}";
|
|
description = "Prettier and powerful ls";
|
|
homepage = "http://pls.cli.rs";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "pls";
|
|
maintainers = with lib.maintainers; [ tomasajt ];
|
|
};
|
|
}
|