Files
nixpkgs/pkgs/by-name/ca/cargo-workspaces/package.nix
Michael Daniels 1d0bb7b61b treewide: drop figsoda as maintainer (part 3)
s/^\s*figsoda\s*$//
2025-11-02 20:16:11 -05:00

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";
};
}