53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
pkg-config,
|
|
libssh2,
|
|
openssl,
|
|
zlib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-workspaces";
|
|
version = "0.4.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-5heOf74OUsnrG+vt9AdMXV7uRxqKYs0KRE7qm0irmC0=";
|
|
};
|
|
|
|
cargoHash = "sha256-Is2ddCrg+dP0TSw3EUl057RA0L2VW4mPttg2eAtC0j4=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libssh2
|
|
openssl
|
|
zlib
|
|
];
|
|
|
|
env = {
|
|
LIBSSH2_SYS_USE_PKG_CONFIG = true;
|
|
};
|
|
|
|
meta = {
|
|
description = "Tool for managing cargo workspaces and their crates, inspired by lerna";
|
|
longDescription = ''
|
|
A tool that optimizes the workflow around cargo workspaces with
|
|
git and cargo by providing utilities to version, publish, execute
|
|
commands and more.
|
|
'';
|
|
homepage = "https://github.com/pksunkara/cargo-workspaces";
|
|
changelog = "https://github.com/pksunkara/cargo-workspaces/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
macalinao
|
|
matthiasbeyer
|
|
];
|
|
mainProgram = "cargo-workspaces";
|
|
};
|
|
}
|