mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, cmake
|
|
, installShellFiles
|
|
, asciidoctor
|
|
, DarwinTools
|
|
, openssl
|
|
, libusb1
|
|
, AppKit
|
|
, openssh
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "radicle-cli";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "radicle-dev";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LS6zYpMg0LanRL2M8ioGG8Ys07TPT/3hP7geEGehwxg=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-o7ahnV7NnvzKxXb7HdNqKcxekshOtKanYKb0Sy15mhs=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
installShellFiles
|
|
asciidoctor
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
DarwinTools
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libusb1
|
|
AppKit
|
|
];
|
|
|
|
postInstall = ''
|
|
for f in $(find . -name '*.adoc'); do
|
|
mf=''${f%.*}
|
|
asciidoctor --doctype manpage --backend manpage $f -o $mf
|
|
installManPage $mf
|
|
done
|
|
'';
|
|
|
|
nativeCheckInputs = [ openssh ];
|
|
preCheck = ''
|
|
eval $(ssh-agent)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Command-line tooling for Radicle, a decentralized code collaboration network";
|
|
homepage = "https://radicle.xyz";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ amesgen ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "rad";
|
|
};
|
|
}
|