mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, installShellFiles
|
|
, openssl
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tealdeer";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbrgn";
|
|
repo = "tealdeer";
|
|
rev = "v${version}";
|
|
sha256 = "0l16qqkrya22nnm4j3dxyq4gb85i3c07p10s00bpqcvki6n6v6r8";
|
|
};
|
|
|
|
cargoSha256 = "0jvgcf493rmkrh85j0fkf8ffanva80syyxclzkvkrzvvwwj78b5l";
|
|
|
|
buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];
|
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --bash --name tealdeer.bash bash_tealdeer
|
|
installShellCompletion --fish --name tealdeer.fish fish_tealdeer
|
|
installShellCompletion --zsh --name _tealdeer zsh_tealdeer
|
|
'';
|
|
|
|
# disable tests for now since one needs network
|
|
# what is unavailable in sandbox build
|
|
# and i can't disable just this one
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A very fast implementation of tldr in Rust";
|
|
homepage = "https://github.com/dbrgn/tealdeer";
|
|
maintainers = with maintainers; [ davidak ];
|
|
license = with licenses; [ asl20 mit ];
|
|
};
|
|
}
|